On running this code why x is no getting delete from this global object is delete operation not work on this(global) object?
var x = 1;
console.log(this.hasOwnProperty("x")); // browser -> true
delete this.x; // -> x should be removed from this/window object
console.log(x);
Help me to understand this