Skip to content

Commit 8b470cc

Browse files
committed
intials.js
1 parent 0015f48 commit 8b470cc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
const firstName = "Creola";
2-
const middleName = "Katherine";
3-
const lastName = "Johnson";
1+
let firstName = "Creola";
2+
let middleName = "Katherine";
3+
let lastName = "Johnson";
44

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.

0 commit comments

Comments
 (0)