Last Updated: February 25, 2016
·
8.034K
· garrytaulu

Shorthand string to number (JS)

I just discovered a neat little trick; you can convert strings to numbers using a unary plus operator as opposed to parseInt() or Number()

eg.

var x = '23';

console.log(parseInt(x));
console.log(Number(x));
console.log(+x);

1 Response
Add your response

only work with digit string, no other character allow.
parseInt() is safer.

over 1 year ago ·