Skip to content

Commit 2292f32

Browse files
committed
formatting using prettier
1 parent fcb6413 commit 2292f32

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ 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 = firstName.charAt(0)+middleName.charAt(0)+lastName.charAt(0);
8+
let initials = firstName.charAt(0) + middleName.charAt(0) + lastName.charAt(0);
99
// or
10-
let initials = firstName[0] + middleName[0] + lastName[0];
10+
//let initials = firstName[0] + middleName[0] + lastName[0];
1111
// or but rarely used and not recommended because it might cause bugs
12-
let initials = firstName[0].concat(middleName[0], lastName[0]);
12+
//let initials = firstName[0].concat(middleName[0], lastName[0]);
1313

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

0 commit comments

Comments
 (0)