check if key exists in map javascript code example
Example 1: javascript does key exist
var person={"name":"Billy","age":20}
person.hasOwnProperty("name");
person.hasOwnProperty("sex");
Example 2: how to check if a key exists in an object javascript
!("key" in obj)
!"key" in obj
Example 3: check if a key is in a map
if ( m.find("f") == m.end() ) {
} else {
}
Example 4: js check if map contains key
const map1 = new Map();
map1.set('bar', 'foo');
console.log(map1.has('bar'));
console.log(map1.has('baz'));