Skip to content

Instantly share code, notes, and snippets.

@dikshadhote
Last active June 6, 2022 04:06
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 dikshadhote/18f6b522e449d21e8a3b63161e34757f to your computer and use it in GitHub Desktop.
Save dikshadhote/18f6b522e449d21e8a3b63161e34757f to your computer and use it in GitHub Desktop.
Scope of variable in js
var number = 4;
function test()
{
if (number ==8) {
var number = 16;
}
console.log(number );
}
test();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment