- script.js
JavaScript
var page = 7;
muffin.print(page);
Result
Goalscompleted
The driver prints one page #7. Make it print it three times.
- Copy the line with the command
muffin.print(page)
in the end of the program. - And once again.
- Replace the value of the
page
variable to9
.
Comments