Answers for "javascriopt quickest way to check if props exist"

9

how to check wether the property exist in a object in java script

if (obj.hasOwnProperty('prop')) {
    // do something
}
Posted by: Guest on May-26-2020
3

check if js property exists in class

myObj.hasOwnProperty(myProp)
Posted by: Guest on February-12-2020

Code answers related to "javascriopt quickest way to check if props exist"

Code answers related to "Javascript"

Browse Popular Code Answers by Language