You can try to run the following to learn how to convert String to Number in JavaScript −
Example
<!DOCTYPE html> <html> <body> <p>Convert String to Number</p> <script> var myString = "Amit"; document.write("Number : " + Number(myString)); </script> </body> </html>