Skip to content

Instantly share code, notes, and snippets.

@gonzaloruizdevilla
Created May 2, 2012 09:48
Show Gist options
  • Save gonzaloruizdevilla/2575612 to your computer and use it in GitHub Desktop.
Save gonzaloruizdevilla/2575612 to your computer and use it in GitHub Desktop.
REPL y estilo coma primero en javascript
//El REPL de node.js no interpreta correctamente esto:
var a = 1
, b = 2
, c = 3;
//En cambio esto funciona bien:
var a = 1,
b = 2,
c = 3;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment