Skip to content

Instantly share code, notes, and snippets.

@luminous8
Created August 29, 2019 10:34
Show Gist options
  • Save luminous8/e3f1e36d3290c06a795877c02b572cb1 to your computer and use it in GitHub Desktop.
Save luminous8/e3f1e36d3290c06a795877c02b572cb1 to your computer and use it in GitHub Desktop.
Average movie rating on Allociné
const notes = document.querySelectorAll('.stareval-note');
arrNotes = [];
leSum = 0;
for (var i = 0; i < notes.length; i++) {
const noteInt = parseInt(notes[i].innerText, 10);
arrNotes.push(noteInt);
leSum += noteInt
}
console.log(`Sur ${arrNotes.length} films & series la moyenne est de ${leSum / arrNotes.length}`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment