Converting Strings to Numbers
Problem
Receive a value as a string and convert it to a number.
Caution
Methods attached to the Number object are part of ECMAScript 6 (ES6, the new standard of JavaScript). Older browsers that still in use, such as Internet Explorer 11 and below and Safari 7 and below, do not support these features (they work to the older ECMAScript 5 or ES5 standard). Check out http://kangax.github.io/es5-compat-table/es6/ for the current compatibility charts.
Solution
There are several ways to make this conversion. ...