Skip to content

Instantly share code, notes, and snippets.

@facelordgists
Last active November 2, 2018 17:33
Show Gist options
  • Save facelordgists/457684ec5c490433fd05b56367f943ad to your computer and use it in GitHub Desktop.
Save facelordgists/457684ec5c490433fd05b56367f943ad to your computer and use it in GitHub Desktop.
JS: How to check if a variable exists.js #javascript #js
if (typeof subProduct != "undefined") {
console.log('subProduct exists');
}
// If doesn't exist
if (typeof subProduct == "undefined") {
console.log("subProduct doesn't exists");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment