Last Updated: February 25, 2016
·
1.308K
· nostalgia

javascript: string to int

don't try this at home

var myString = '1337'
, myInt = ~~myString;

console.log(myString, '->', myInt);

1 Response
Add your response

That´s an explicit type conversion to int by the interpreter cause the double NOT bitwise operator. Bitwise operators can be used only on number values. The parseInt() function is the right choice.

over 1 year ago ·