The code ran in developer console is shown below. Why does parseInt
return the number present in [0]th index of a string but not return the number present in any other index in the string?
parseInt('i am 1 year old')
// output NaN
parseInt('1 year old')
// output 1
What is the reason why it behaves like this?
The
parseInt
function reads the string to a point it keeps getting numbers. So,10 is a number
returns10
because the function stops at third character, which is a space. But in case ofi am 1 year old
, it stops ati
because it is not a number and returnsNaN
instead.Reference: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/parseInt