SchoolOfCode / week-2-debugging-customer-challenge-bc18-room10

bootcamp-18-week-2-debugging-customer-challenge-workshop_debugging-kata created by GitHub Classroom
0 stars 0 forks source link

Initialise score to zero #8 #7

Closed Holl4444 closed 1 day ago

Holl4444 commented 1 day ago

score is currently null and we can't use abbreviated += on null.

let score;

Holl4444 commented 1 day ago

Gave the variable score a starting value. let score = 0;