Convertir a numero de la forma mas rapida
La conversión de cadenas en números es muy común. La forma más rápida (jsPref) y más fácil de lograr que sería utilizar el operador +
(mas).
var one = '1';
var numberOne = +one; // Number 1
You can also use the -
(minus) operator which type-converts the value into number but also negates it.
También se puede utilizar el operador -
(menos) qué convierte el valor en número, sino también la niega.
var one = '1';
var negativeNumberOne = -one; // Number -1
MEET THE NEW JSTIPS BOOK
You no longer need 10+ years of experience to get your dream job.
Use the 100 answers in this short book to boost your confidence and skills to ace the interviews at your favorite companies like Twitter, Google and Netflix.
GET THE BOOK NOW
MEET THE NEW JSTIPS BOOK
The book to ace the JavaScript Interview.
A short book with 100 answers designed to boost your knowledge and help you ace the technical interview within a few days.
GET THE BOOK NOW