Skip to content

Commit 8f8263e

Browse files
committed
Solved 2-initials.js
1 parent b975ffa commit 8f8263e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ 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 = ``;
8+
let initials = `${firstName[0]}${middleName[0]}${lastName[0]}`;
99

10-
// https://www.google.com/search?q=get+first+character+of+string+mdn
10+
console.log(initials); // Output: "CKJ"
1111

12+
// https://www.google.com/search?q=get+first+character+of+string+mdn

0 commit comments

Comments
 (0)