Nothing here yet.
Nothing here yet.
oh, yeah, it's always safer to call using Object.hasOwnProperty.call cause the result object might not have a prototype when you create it and hence it might not even have the hasOwnProperty method in it. So when you use Object.hasOwnProperty.call, it looks into the prototype chain and borrows that function.