Skip to content

Commit 0b19fc5

Browse files
authored
Explaining about the = sign after the count
1 parent 8f3d6cf commit 0b19fc5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ 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+
// Answer
8+
// Line 3; when we the right side first count in the right side is considerd as 0 so 0+1 will be 1.
9+
// But the = sign does not mean the mathimatical equal, its function is to take the result on the right and store it on the left.
10+
// Therfore if we write the same code in next line the result is not one but 2

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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 = ``;
8+
let initials = `${firstName[0]}${middleName[0]}${lastName[0]}`;
99

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

0 commit comments

Comments
 (0)