I see parseInt() and parseFloat() when I hit TAB in the console.
I can just type:
parseInt('123asd');
But where are these located?
|
I see parseInt() and parseFloat() when I hit TAB in the console. I can just type:
But where are these located? |
|||
|
They are properties of the global object. (built-in functions) In the case of the browser, this is |
|||||||||||
|
|
parseInt and parseFloat are attached to the "Global" javascript object therefore they are available in all contexts. |
|||
|
|
function parseInt() { [native code] }– Josh Stodola Nov 10 '10 at 20:19