My javascript code is exceeding 3000 thousand lines of code because I need to call many variables, is there any way to simplify this?
Here's the code:
var Start = document.getElementById('Start'),
question1 = document.getElementById('1'),
question2 = document.getElementById('2'),
question3 = document.getElementById('3'),
question4 = document.getElementById('4'),
question5 = document.getElementById('5'),
question6 = document.getElementById('6'),
question7 = document.getElementById('7');
I have more than 50 variables to questions and more 50 to answers.