Skip to content

Commit c16f93f

Browse files
author
Payman IB
committed
1st & 2nd are completed.
1 parent 8f3d6cf commit c16f93f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Sprint-1/1-key-exercises/1-count.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ count = count + 1;
44

55
// Line 1 is a variable declaration, creating the count variable with an initial value of 0
66
// Describe what line 3 is doing, in particular focus on what = is doing
7+
// Line 3 take the count and add 1 to that so as the count was 0 line 3 make it 1.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ 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.
7+
let initials = firstName.charAt(0) + middleName.charAt(0) + lastName.charAt(0);
78

8-
let initials = ``;
9+
console.log(initials);
910

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

0 commit comments

Comments
 (0)