Why is parseInt a function instead of a method?
Function:
var i = parseInt(X);
Method:
var i = X.parseInt();
|
Why is parseInt a function instead of a method? Function:
Method:
|
|||
| show 2 more comments |
|
Edit: I'm not 100% sure why End Edit
That said, there is some cost to it as the engine must scan the scope chain looking for definitions of
If my code needs to make more than one call to the method within a scope, however, I localize it and use the reference:
|
|||||||||||||||||
|
Xisundefined, you'll always get an error when trying to access a property. Not sure what that would have to do withparseIntnot being a method ofNumber. – squint Feb 21 '12 at 14:53parseInt(undefined) === NaNifparseintwere a method ofStringorNumberthenundefined.parseInt()would throw an exception not returnNaN– JaredMcAteer Feb 21 '12 at 15:05Stringhad aparseIntmethod, then you'd need to be working with aStringobject to invoke it. Same withBoolean,Array, etc... – squint Feb 21 '12 at 15:06Xis coming from. E.g.,function(X) { var i = X.parseInt(); /* do some code */ }in such a case you now have to do try/catching instead of an if conditional forisNaN– JaredMcAteer Feb 21 '12 at 15:08