Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
javascript
basic
035stringmethods_toString.js
035stringmethods_toString.js
/** * String methods: toString * Converting number into string */ var num, str; num = 1245.99; str = num.toString(); console.log(typeof str); //string
Reload page
Preview
W3C validation
Edit Code
JS Console