Skip to content

Commit b21591e

Browse files
committed
creating a variable
1 parent e4c2e57 commit b21591e

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
@@ -2,12 +2,13 @@ let firstName = "Creola";
22
let middleName = "Katherine";
33
let lastName = "Johnson";
44

5-
let initials =
5+
66

77
// Declare a variable called initials that stores the first character of each string.
88
// This should produce the string "CKJ", but you must not write the characters C, K, or J in the code of your solution.
99

10-
let initials = `${firstName[C]}${middleName[K]}${lastName[J]}`;
10+
let initials = `${firstName.charAt(0)}${middleName.charAt(0)}${lastName.charAt(0)}`;
11+
console.log(initials);
1112

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

0 commit comments

Comments
 (0)