Files
Randell Dawson 1494a50123 fix(guide): restructure curriculum guide articles (#36501)
* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
2019-07-24 13:29:27 +05:30

460 B

title
title
Concatenating Strings with Plus Operator

Concatenating Strings with Plus Operator


Hints

Hint 1

Concatenate means to link together. Think of the '+' operator like a chain linking strings together; add the strings just like you add numbers. Make sure your spelling is correct! Take note of spaces between words.

var str = "Good " + "job!"; // It says "Good job!"
var abc = "Good" + "job!"; // It says "Goodjob!"