Created
August 1, 2014 19:28
-
-
Save mikemunsie/d15aa9bc070152f61d2c to your computer and use it in GitHub Desktop.
Comma separated variables,,,
This file contains 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
var example = "This is my example"; | |
new function testFunction(){ | |
var example = "cool", | |
example = "cool2"; | |
} | |
// Will print out "This is my example" | |
console.log(example); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment