I need a Javascript while adds the class checkedNavbar when the checkbox is checked and to remove it when unchecked.
      <div class="hamburger">
        <input type="checkbox" id="check" onclick="EnableDisableNavbar"/>
        <label for="check" class="checkButton">
          <i class="fas fa-bars" style="font-size: 35px"></i>
        </label>
      </div>
I want to add a class while checked and remove it when unchecked. Here's my css:
    ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        z-index: 0;
        right: 0;
        background-color: #e54136;
    }
    ul li{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 15px 0;
    }
    ul li a{
        font-size: 30px;
    }
    .checkedNavbar{
        right: 100%;
    }
 
    