Skip to content

Instantly share code, notes, and snippets.

@olaferlandsen
Created December 7, 2016 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olaferlandsen/bb3c5929a46dd5a6c78e97e15235a0ab to your computer and use it in GitHub Desktop.
Save olaferlandsen/bb3c5929a46dd5a6c78e97e15235a0ab to your computer and use it in GitHub Desktop.
Check if a variable exists in Javascript
/**
* simple
*/
function isDefined (varname) {
return window.hasOwnProperty(varname);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment