The code below is the code that I have written:
function singer(artist) {
    var songs = [];
    for(var i = 0; i < music.length;i++ ){
        if(music[i].artist.indexOf(artist) > -1) {
            songs.push(music[i].name);
        }
    }
    return songs;
}
The code that I want to look similar to the function singer(artist) code is this:
const genreCount = () => {
    const genres =  music.reduce((result, cur) => {
        cur.genres.forEach(g => {
            if (result.hasOwnProperty(g)) {
                result[g] += 1;
            }
            else
                result[g] = 1;
        });
        return result;
    }, {});
    return genres;
}
I am unfamiliar with this type of format in Javascript, how would I change it so that const genreCount will look like function singer(artist).
 
     
    