'parseFloat()' Example
<html> <body> <button onclick="alert(parseFloat('12.34'));">parseFloat('12.34')</button> <button onclick="alert(parseFloat('Hello'));">parseFloat('Hello')</button> </body> </html>