The object to check for properties.
The keys to check for in the object, separated by commas.
Optional
returnType: boolean = falseDetermines the return type of the function. Defaults to false.
console.log(hasOwnProperty({'a':1, 'b':2, 'c':3}, "a,d"));
// Output: "d not found"
Generated using TypeDoc
Determines whether an object has a property with the specified name.