Skip to content

Commit 795be43

Browse files
creating initials from a string
1 parent 51a060d commit 795be43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ let lastName = "Johnson";
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

88
let initials = ``;
9+
console.log(`the initials is ${firstName.charAt(0)}, ${middleName.charAt(0), lastName(0)}`);
910

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

0 commit comments

Comments
 (0)