Skip to content

Commit defadad

Browse files
authored
update the code by declaring new variable and function producing strings "CKJ"
1 parent 57564ec commit defadad

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ 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+
function getInitial(name) {
9+
return name[0];
10+
}
911

10-
// https://www.google.com/search?q=get+first+character+of+string+mdn
12+
let initials =
13+
getInitial(firstName) + getInitial(middleName) + getInitial(lastName);
14+
console.log(initials);
1115

0 commit comments

Comments
 (0)