|
|
|
|
|
by munificent
978 days ago
|
|
> If I were to add something (well take it away really) its to use whitespace for array element separators. Eliminates the whole trailing comma issue and looks cleaner, though I admit it might create parsing ambiguities. Indeed: var array = [
5
- 3
]
Does that produce [5, -3] or [2]? |
|