Answers for "jquery check if dictionary has key"

0

jquery check if dictionary has key

let myDict = {"a": 53, "b": 42}

if "a" in myDict {} // True
if "c" in myDict {} // False
Posted by: Guest on May-26-2021
0

jquery if key exists in object

Use the in operator:

testArray = 'key1' in obj;
Sidenote: What you got there, is actually no jQuery object, but just a plain JavaScript Object
Posted by: Guest on March-20-2021

Code answers related to "jquery check if dictionary has key"

Code answers related to "Javascript"

Browse Popular Code Answers by Language