how to check if object exists in javascript
if (typeof maybeObject != "undefined") {
alert("GOT THERE");
}
how to check if object exists in javascript
if (typeof maybeObject != "undefined") {
alert("GOT THERE");
}
check if somethin exist in an object js
let result = targetObject.hasOwnProperty(propertyName);
let person = {
firstName: 'John',
lastName: 'Doe'
};
//Example 1
let result = person.hasOwnProperty('firstName');
console.log(result); // true
//Example 2
let result = person.hasOwnProperty('age');
console.log(result); // false
check if somethin exist in an object js
let result = person.hasOwnProperty('firstName');
console.log(result); // true
Code language: JavaScript (javascript)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us