Whitespace
With whitespace
[
1,
2,
3
].map(
if ( $this >= 1 ) {
$this / 1
} else {
$this
}
)Without whitespace
[1,2,3].map(if($this>=1){$this/1}else{$this})Last updated
[
1,
2,
3
].map(
if ( $this >= 1 ) {
$this / 1
} else {
$this
}
)[1,2,3].map(if($this>=1){$this/1}else{$this})Last updated