Skip to content

Instantly share code, notes, and snippets.

@regepan
Last active March 11, 2021 16:37
Show Gist options
  • Save regepan/bfcb869ccc1afe350817c366dae131c9 to your computer and use it in GitHub Desktop.
Save regepan/bfcb869ccc1afe350817c366dae131c9 to your computer and use it in GitHub Desktop.
var hoge1;
var hoge2 = 1;

console.log("hoge1 =", typeof hoge1, typeof hoge1 === 'undefined'); // hoge1 = undefined true
console.log("hoge2 =", typeof hoge2, typeof hoge2 === 'undefined'); // hoge2 = number false
console.log("hoge3 =", typeof hoge3, typeof hoge3 === 'undefined'); // hoge3 = undefined true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment