We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9977bb commit 4cb4496Copy full SHA for 4cb4496
1 file changed
Sprint-1/1-key-exercises/2-initials.js
@@ -5,7 +5,7 @@ let lastName = "Johnson";
5
// Declare a variable called initials that stores the first character of each string.
6
// This should produce the string "CKJ", but you must not write the characters C, K, or J in the code of your solution.
7
8
-let initials = firstName[0]+middleName[0]+lastName[0];
+let initials = `${firstName[0]}${middleName[0]}${lastName[0]}`;
9
10
console.log(initials)
11
0 commit comments