freeCodeCamp/guide/english/certifications/javascript-algorithms-and-d.../basic-javascript/appending-variables-to-strings/index.md

12 lines
456 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Appending Variables to Strings
---
## Appending Variables to Strings
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
Make sure your spelling and spacing are correct. Appending strings (stored inside variables) can be done like so:
var adj = "happy!";
var sent = "Today, I woke up being ";
sent += adj; // The result is "Today, I woke up being happy!"