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
031string_length.js
031string_length.js
/** * Get the length of string */ var x, len; x = 'Some string!'; len = x.length; console.log(typeof x); //string console.log(typeof len); //number console.log(len); //12
Reload page
Preview
W3C validation
Edit Code
JS Console