- script.js
JavaScript
var expectedUsers = 1000;
var firstDayUsers = 812;
var secondDayUsers = 1360;
var thirdDayUsers = 657;
Result
Goalscompleted
Let’s add a graph on the screen.
- After declaring the variables, add the command
muffin.plot(firstDayUsers, secondDayUsers, thirdDayUsers, expectedUsers);
.
Comments