Skip to content

Commit 103635d

Browse files
committed
refactor(sprint-1): simplify initials template literal
1 parent 09dc15f commit 103635d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@ let 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-
let initials = `${firstName[0] + middleName[0] + lastName[0]}`;
9-
10-
// https://www.google.com/search?q=get+first+character+of+string+mdn
8+
let initials = `${firstName[0]}${middleName[0]}${lastName[0]}`;
9+
console.log(initials);

0 commit comments

Comments
 (0)