Skip to content

Instantly share code, notes, and snippets.

@oaltena
Created November 3, 2018 15:15
Util.js
export default {
getGenreRankings (collection) {
var rankings = []
collection.forEach((element) => {
var genres = element.Genre.split(',')
genres = genres.map(x => x.trim())
genres.forEach((element) => {
if (rankings[element] !== undefined) {
rankings[element]++
} else {
rankings[element] = 1
}
})
})
return rankings
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment