Skip to content

Instantly share code, notes, and snippets.

@ufocoder
Last active October 21, 2018 12:28
Show Gist options
  • Select an option

  • Save ufocoder/1e7169b111990ec17d3c2c4a5c8cec57 to your computer and use it in GitHub Desktop.

Select an option

Save ufocoder/1e7169b111990ec17d3c2c4a5c8cec57 to your computer and use it in GitHub Desktop.
// Использование typeof для идентификатора,
// объявленного с блочной областью видимости,
// создаст ошибку `ReferenceError`
console.log(typeof tdzVariable === 'undefined'); // ReferenceError
const tdzVariable = 'I am initialized.';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment