Which of the following should be used to make the code snip…
Which of the following should be used to make the code snippet work for students who get any score between 0 – 100? var grade = 0; var score = parseInt(“What’s the score?”); if (score < 70) grade = "F"; else if ( ??? ) grade = "C"; else if (grade >= 85) grade = “A”;