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?

jsfiddle.net/V2sHg/2/

link|improve this question

I couldn't figure it out, but maybe Firefox doesn't want to return a function when getting a property. – alex Oct 21 '11 at 6:58
Very strange behaviour indeed - Firefox appears to be binding the Number prototype to this when it tries to get a function, but removing the () after 5..foo binds it to an instance of Number instead. Perhaps it's a bug? – daiscog Oct 21 '11 at 10:12
feedback

1 Answer

It works for me on FF when using "new Number(value)" but not using directly a "number":

Try:

var n = new Number(8);
n.foo(); --> 8
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.