w3resource

JavaScript: Check whether an object contains specified property

JavaScript Object: Exercise-17 with Solution

Write a JavaScript function to check whether an object contains a given property.

Sample Solution:

JavaScript Code:

function hasKey(obj, key) {
    return obj != null && hasOwnProperty.call(obj, key);
  }
console.log(hasKey({red: "#FF0000", green: "#00FF00", white: "#FFFFFF"}, "green"));

Output:

true

Flowchart:

Flowchart: JavaScript:- Check whether an object contains given property

Live Demo:

See the Pen javascript-object-exercise-17 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus.

Previous: Write a JavaScript function to get a copy of the object where the keys have become the values and the values the keys.
Next: Write a JavaScript function to check whether a given value is a DOM element.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/javascript-exercises/javascript-object-exercise-17.php