Progress Bar

Create a progress bar component

JavaScriptBeginner
JavaScript
class ProgressBar {
    constructor(max) { this.value = 0; this.max = max; }
    setValue(value) { this.value = Math.min(value, this.max); }
    getPercentage() { return (this.value / this.max) * 100; }
}

Output

// Progress bar

Progress Bar shows completion progress.