Skip to content

Instantly share code, notes, and snippets.

@scriptschat
Created September 24, 2020 11:53
Embed
What would you like to do?
undefined in JavaScript
var emp = {
name: 'John Snow',
email: 'john.snow@abc.com'
}
console.log(emp.name);
//John Snow
console.log(emp.address);
// undefined (here we are trying to extract a member which object doesn't have)
var test;
console.log(test);
//undefined (a variable defined but not initialized)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment