'parseInt()' Example : Math « Javascript Objects « JavaScript DHTML
- JavaScript DHTML
- Javascript Objects
- Math
'parseInt()' Example
<html>
<body>
<button onclick="alert(parseInt('12.34'));">parseInt('12.34')</button>
<button onclick="alert(parseInt('Hello'));">parseInt('Hello')</button>
</body>
</html>
Related examples in the same category