As far as my understanding about it, every object I create is also an Object of its prototype. now the in
keyword should tell me about existence of my object and its prototypes.
So in this case, why shouldn't I get a true result?
function test() {
var myObj = {
"hello": "hell"
};
alert("keys" in myObj); // false -- why ?
alert("keys" in Object) // true
}