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?

jsfiddle.net/yr7hQ/

link|improve this question

1  
Just out of curiosity, why on earth would you want to do this? – Demian Brecht Oct 21 '11 at 20:36
3  
Works with new Number(10) - only fails with integers as primitives. Nicely found! – pimvdb Oct 21 '11 at 20:41
It really does almost seem like an IE9 bug, but I'm curious as to the underlying reason.. There must be a better way of doing what you're after.. – Demian Brecht Oct 21 '11 at 20:42
Thanks for your comments. Here's the source of all this deviousness: mathmethods.js. – davidchambers Oct 21 '11 at 20:45
3  
@davidchambers, the bug is present even on IE10 Preview, if you have some free time, I would encourage you to report it. Cheers. – CMS Oct 21 '11 at 20:54
show 2 more comments
feedback

2 Answers

To avoid sullying the API, one could define a helper function in contexts where IE9 must be accommodated:

function _(n) { return new Number(n) }

This allows:

_(10).foo

I'd love to learn of a better workaround.

link|improve this answer
feedback

I can't explain that result, but you also asked for a workaround.

Demo: http://jsfiddle.net/ThinkingStiff/FJ7Qx/

Script:

Number.prototype.foo = function() { return Number( this ) };

console.log(10.5.foo())
console.log(10..foo())
console.log(10.0.foo())
console.log(10.01.foo())
console.log((10).foo())
var x = 10
console.log(x.foo())
link|improve this answer
Excellent! I'm now kicking myself for not thinking to try this. – davidchambers Oct 27 '11 at 23:29
1  
Oops. I shouldn't read code straight after getting off a plane. I didn't notice at first glance that foo is a method here, rather than a property. This is certainly an option, but I'm hoping to discover a workaround that doesn't require changing the API. – davidchambers Oct 27 '11 at 23:39
@davidchambers: "methods" are just properties that happen to have function type – Lightness Races in Orbit Dec 27 '11 at 15:34
feedback

Your Answer

 
or
required, but never shown

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