There are a couple of ways to check if a value exists in an object in JavaScript:
hasOwnProperty
method: This method checks whether the object has a property with the specified name.index.tsx112 chars5 lines
in
operator: This operator checks whether the specified property is in the specified object or its prototype chain.index.tsx99 chars5 lines
Array.prototype.includes
method: This method checks whether the specified value is in the array of object property names.index.tsx119 chars5 lines
gistlibby LogSnag