I do not want use each and every time parseInt('08', 10) for each string to integer conversion,
Can we modify parseInt method, so that i can use only parseInt('08') instead of parseInt('08', 10).?
|
I do not want use each and every time Can we modify |
|||
|
|
|
Instead of modifying the built-in function
And replace all the occurences of Fine, if you still wanna redefine, you can do this:
And it works! Fiddle: http://jsfiddle.net/QKKwv/ |
|||||||||||||||||
|
|
Use simply a
|
|||
|
|
|
For a single number like You should ALWAYS be providing the radix parameter whenever using |
|||||||
|