Skip to content

Instantly share code, notes, and snippets.

@criso
Created November 16, 2012 15:13
Show Gist options
  • Save criso/4088065 to your computer and use it in GitHub Desktop.
Save criso/4088065 to your computer and use it in GitHub Desktop.
checking existence of props
var props = {
foo: true,
bar: 1,
baz: false
};
if (props.baz) {
console.log("Won't work")
}
if ("baz" in props) {
console.log("WORKS");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment