Created
May 2, 2012 09:48
-
-
Save gonzaloruizdevilla/2575612 to your computer and use it in GitHub Desktop.
REPL y estilo coma primero en javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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