i am new to the world of javascript and would love some help. I have a simple quiz with "range" objects in HTML. Each Value is for the range is displayed with
<input type="range" class="form-range" min="0" max="5" id="input1"
oninput="q1points.value = this.value">
<output id="q1points">0</output>
I'm not sure if this way of displaying the values of my range objects is the way to go if i want to count them together.
I have 5 questions. How do i add these values together i javascript and store them in variables?