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 d6982da commit 28ffca5Copy full SHA for 28ffca5
1 file changed
Sprint-1/1-key-exercises/2-initials.js
@@ -6,7 +6,7 @@ let lastName = "Johnson";
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 = ``;
9
-initials = firstName.substring(0, 1) + middleName.substring(0, 1) + lastName.substring(0, 1)
+initials = firstName.slice(0, 1) + middleName.slice(0, 1) + lastName.slice(0, 1)
10
console.log(initials)
11
// https://www.google.com/search?q=get+first+character+of+string+mdn
12
0 commit comments