mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-13 18:02:59 -05:00
456 B
456 B
title
| title |
|---|
| Appending Variables to Strings |
Appending Variables to Strings
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!"