Guest User

Untitled

a guest
Apr 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. var total_points = 0;
  2.  
  3. function change_points(points) {
  4. total_points += points;
  5. point_box.text = total_points;
  6. }
  7.  
  8. change_points(100);
Add Comment
Please, Sign In to add comment