Created
June 3, 2015 21:20
-
-
Save steve54b/507501c8ea1679a6cc91 to your computer and use it in GitHub Desktop.
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
function my_global_function() { | |
var my_function_var = "a"; | |
if (my_function_var === undefined) { | |
return; | |
} else { | |
console.log(my_function_var + 1); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment