Skip to content

Commit be0049d

Browse files
committed
2-initials.js fixed
1 parent 8c51b79 commit be0049d

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

‎Sprint-2/1-key-exercises/2-initials.js‎

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ const lastName = "Johnson";
55
// Declare a variable called initials that stores the first character of each string.
66
// This should produce the string "CKJ", but you must not write the characters C, K, or J in the code of your solution.
77

8-
const initials = `${firstName.charAt(0)}
9-
${middleName.charAt(0)}
10-
${lastName.charAt(0)}`;
8+
const initials = `${firstName.charAt(0)}${middleName.charAt(0)}${lastName.charAt(0)}`;
119

1210
console.log(initials);
1311

0 commit comments

Comments
 (0)