Todorov_Stanimir

09. Loading Bar Functions - Exercise

Jun 14th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function loadingBar(num) {
  2.     let percent = num / 10;
  3.     let points = 10 - percent;
  4.  
  5.     if (num < 100) {
  6.         console.log(num + '% [' + '%'.repeat(percent) + '.'.repeat(points) + ']');
  7.         console.log(`Still loading...`)
  8.     } else if (num === 100) {
  9.         console.log(`100% Complete!`)
  10.         console.log('[%%%%%%%%%%]');
  11.     }
  12. }
Add Comment
Please, Sign In to add comment