Data Type Convert String to Number. <script> var num = '12' num = parseInt(num) document.write(typeof(num)); </script>
No comments