Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Checking if a key exists in a JavaScript object?

5003

Checking for undefined-ness is not an accurate way of testing whether a key exists. What if the key exists but the value is actually undefined?

var obj = { key: undefined };
console.log(obj["key"] !== undefined); // false, but the key exists!
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Checking #key #exists #JavaScript
ADD COMMENT
Topic
Name
6+7 =