Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function loadingBar(n) {
- let result = 0;
- if (n % 10 === 0) {
- result = n * 10;
- }
- let percentage = '%'.repeat(n / 10);
- let dots = '.'.repeat(10 - n / 10);
- console.log(`${n}% [${percentage}${dots}]`);
- console.log("Still loading...");
- if (n === 100) {
- console.log("100% Complete!");
- console.log(`[${percentage}]`);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment