Created
October 13, 2014 18:52
-
-
Save mattiasb/c84ab498d444df108bf7 to your computer and use it in GitHub Desktop.
Mmm 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
// test.js | |
let v1 = "wee"; | |
let v2 = "gaah"; | |
function test() { | |
return | |
[v1,v2].join(' '); | |
} | |
log(test()); | |
// mattiasb@localhost ~ $ gjs test.js | |
// Gjs-Message: JS LOG: undefined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment