Object.defineProperty(Number.prototype, 'foo', {
get: function () { return this }
})
console.log(10.5.foo)
console.log(10..foo) // 0 in IE9!
console.log(10.0.foo) // 0 in IE9!
console.log(10.01.foo)
console.log((10).foo) // 0 in IE9!
var x = 10
console.log(x.foo) // 0 in IE9!
Can anyone explain this behaviour and/or suggest a workaround?
new Number(10)- only fails with integers as primitives. Nicely found! – pimvdb Oct 21 '11 at 20:41