Where Are Parseint() And Parsefloat() Located?
I see parseInt() and parseFloat() when I hit TAB in the console. I can just type: parseInt('123asd'); But where are these located?
Solution 1:
They are properties of the global object. (built-in functions)
In the case of the browser, this is window
.
Post a Comment for "Where Are Parseint() And Parsefloat() Located?"