Mega Code Archive

 
Categories / JavaScript Reference / Javascript Methods
 

ParseInt() Example

<html> <body> <button onclick="alert(parseInt('12.34'));">Number</button> <button onclick="alert(parseInt('Hello'));">NaN</button> </body> </html>