diff --git a/main.js b/main.js index cf298c1..d7845c5 100644 --- a/main.js +++ b/main.js @@ -6,23 +6,25 @@ request.open( request.send(); request.onload = function() { + let ending = x => (Math.abs(x) === 1 ? "" : "s") + let teams = JSON.parse(this.response) let totals = teams.map(team => team.lineup.length + team.rotation.length) // Get all player counts that there are from greatest to least // & make headers & lists for them totals.slice().sort((x, y) => y - x) - .filter((item, pos, array) => !pos || item != array[pos - 1]) + .filter((item, pos, array) => !pos || item !== array[pos - 1]) .forEach(function(item) { document.body.insertAdjacentHTML("beforeend", - `