How to check if value exists in an object in JavaScript?

Let's consider an example which would answer this question var priceOfFood = { pizza: 14, burger 10 } priceOfFood.hasOwnProperty('pizza') // true priceOfFood['pizza'] // 14 priceOfFood.hasOwnProperty('chips') // false priceOfFood['chips'] // undefined in comments we have the returned value.

MC

Related Javascript Mentoring answers

All answers ▸

What does the following code do and why? console.log(1+"2")


How do you create objects in javascript?


I've just heard about objects. How do I use them and do they work with Arrays?


Suppose that you have a <p> element with an id of 'id1'. Use javascript to set the inner html of this element to 'hello!'