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 f184b29 commit d88693eCopy full SHA for d88693e
Sprint-1/1-key-exercises/2-initials.js
@@ -5,7 +5,9 @@ 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 = ``;
+// let initials = ``;
9
+let initials = `${firstName.charAt(0)}${middleName.charAt(0)}${lastName.charAt(0)}`;
10
+console.log(initials);
11
12
// https://www.google.com/search?q=get+first+character+of+string+mdn
13
0 commit comments