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 are objects created in arrays


What does the document.onload() function do and why is it useful?


How would you change the background colour of a div with the id "colourme" to purple?


Make button that says how many times it has been clicked.