Skip to content

Commit 9aa96a7

Browse files
committed
Remove the spaces in CJK
1 parent 9caae05 commit 9aa96a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let lastName = "Johnson";
1010

1111

1212

13-
let initials= `${firstName.charAt(0)} ${middleName.charAt(0)} ${lastName.charAt(0)}`;
13+
let initials= `${firstName.charAt(0)}${middleName.charAt(0)}${lastName.charAt(0)}`;
1414
//test
1515
//let initialsSecond = `${firstName.charAt(3)} ${middleName.charAt(2)} ${lastName.charAt(4)}`;
1616

0 commit comments

Comments
 (0)