Skip to content

Instantly share code, notes, and snippets.

@steve54b
Created June 3, 2015 21:20
Show Gist options
  • Save steve54b/507501c8ea1679a6cc91 to your computer and use it in GitHub Desktop.
Save steve54b/507501c8ea1679a6cc91 to your computer and use it in GitHub Desktop.
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