Determines whether a specified property is enumerable.
propertyIsEnumerable(name)
name
A property name.
true if the property exists and is enumerable; otherwise, false.
let obj = {cheese: "like", milk: "dislike"}
obj.propertyIsEnumerable("cheese")
true