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
032string_concatenate.js
032string_concatenate.js
/** * Concatenate strings */ var x, y, z, c; x = 'My name is '; y = 'Pero Perić '; z = "and I'm fifteen!"; c = x + y + z; console.log(c);
Reload page
Preview
W3C validation
Edit Code
JS Console