I have a an object
me = {
name: "Mo",
age: 28,
}
And I want to see if this object has the property "height" for example. (which it doesn't) How can i do this? So for example if it has the property "height" I can give it a value of "5,7".
PLEASE NOTE: I don't want to check for the property VALUE(me.name) but for the property NAME.
Thank you.