You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// b) Run the code and identify the line where the error is coming from - why is this error occurring? How can you fix this problem?
17
24
25
+
// line 5
26
+
// priceAfterOneYear = Number(priceAfterOneYear.replaceAll("," "")); the error is a missing "," in ...replaceAll("," , "")). with out a "," the " "" are not separated and computer read them together.
27
+
18
28
// c) Identify all the lines that are variable reassignment statements
0 commit comments