Object.defineProperty(Number.prototype, 'foo', {
get: function () {
var me = this
return function () { return me.valueOf() }
}
})
console.log(5..foo())
This logs 5 in Chrome, but 0 in Firefox.
Object.defineProperty(Number.prototype, 'bar', {
get: function () {
return this.valueOf()
}
})
console.log(5..bar)
This logs 5 in both browsers as expected.
Can anyone explain this behaviour, and perhaps suggest how the first example could be rewritten to work in Firefox as it does in Chrome?
thiswhen it tries to get a function, but removing the()after5..foobinds it to an instance ofNumberinstead. Perhaps it's a bug? – daiscog Oct 21 '11 at 10:12