javascript: string to int
don't try this at home
var myString = '1337'
, myInt = ~~myString;
console.log(myString, '->', myInt);
Written by Mattia Larentis
Related protips
1 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
·
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Javascript
Authors
Related Tags
#javascript
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#