In JavaScript, we sometimes need to convert from one type to another. We can use a toDtring method to convert to a string. To convert to numbers, we can use parseInt and parseFloat. The biggest difference between the two is that parseFloat deals with decimal points. Each one of the methods returns the numbers of the item until it hits an alpha character Then is stops. For example…
console.log(Number.parseInt(123abc));
The log statement outputs the number 123 to the console.
Happy Coding!
Clay Hess