Skip to content

Instantly share code, notes, and snippets.

@luminous8
luminous8 / kad.js
Created August 29, 2019 10:34
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}`)