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 ▸

How do you create objects in javascript?


If I do var a=3 and var b=4 and then do var c=a+b it tells me the answer is 34. Why?


What is the difference between global and local variables?


Find the sum of all multiples of 2 less than 10000