Advertisement
dhshin

practice_18_javascript

Jun 26th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let students = [
  2.   {"name": "Jane", "score": 80},
  3.   {"name": "John", "score": 90},
  4.   {"name": "Bob", "score": 60}
  5. ];
  6.  
  7. let minScore = 0;
  8. let maxScore = 100;
  9. let barWidth = 50;
  10. let maxHeight = 200;
  11. let margin = 10;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement