I am trying to make a progress bar and I am trying to figure out how to set it's progress in js.
document.getElementsByClassName("bar").style.width = "50px"
This is the container and the element.
    <div class="project-container">
        <button class="project" id="friendship-bracelet">
            <p>Place Holder</p> 
            <div class="bar">e</div>
        </button>
    </div>
