Skip to content

Commit bc89c41

Browse files
committed
Problems are fixed.
1 parent fa849fa commit bc89c41

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Sprint-1/3-mandatory-interpret/1-percentage-change.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ console.log(`The percentage change is ${percentageChange}`);
2121

2222
// c) Identify all the lines that are variable reassignment statements
2323
// Line 4 and line 5 are variable reassignment statements. In line 4, carPrice is being reassigned with the new value after removing the comma and converting it to a number. In line 5, priceAfterOneYear is being reassigned in the same way.
24-
24+
// line 7 and 8 are also variable reassignment statements. In line 7, priceDifference is being assigned the value of the difference between carPrice and priceAfterOneYear. In line 8, percentageChange is being assigned the value of the percentage change calculated from priceDifference and carPrice.
2525
// d) Identify all the lines that are variable declarations
2626
// Line 1 and line 2 are variable declarations. In line 1, carPrice is declared and initialized with the string value "10,000". In line 2, priceAfterOneYear is declared and initialized with the string value "8,543".
2727

Sprint-1/4-stretch-explore/objects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ In this activity, we'll explore some additional concepts that you'll encounter i
55
Open the Chrome devtools Console, type in `console.log` and then hit enter
66

77
What output do you get?
8-
8+
ƒ log() { [native code] }
99
Now enter just `console` in the Console, what output do you get back?
10-
10+
console {debug: ƒ, error: ƒ, info: ƒ, log: ƒ, warn: ƒ, …}
1111
Try also entering `typeof console`
1212

1313
Answer the following questions:

0 commit comments

Comments
 (0)