Skip to content

Commit d459219

Browse files
committed
initials exercise done
1 parent c7bd6f9 commit d459219

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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

Lines changed: 2 additions & 1 deletion
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].toUpperCase()}${middleName[0].toUpperCase()}${lastName[0].toUpperCase()}`;
9+
console.log(initials);
910

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

0 commit comments

Comments
 (0)