Skip to content

Instantly share code, notes, and snippets.

@jitendra19
Created January 30, 2019 14:52
Show Gist options
  • Save jitendra19/60504e59f0e8b048776777d1ecf94d64 to your computer and use it in GitHub Desktop.
Save jitendra19/60504e59f0e8b048776777d1ecf94d64 to your computer and use it in GitHub Desktop.
// What would be the output of following code
var employeeId = 'abc123';
function foo() {
employeeId = '123bcd';
return;
function employeeId() {}
}
foo();
console.log(employeeId);
// Answer: 3) 'abc123'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment