Messi is a soccer player with goals in three leagues: LaLiga, Copa del Rey, Champions. Complete the function to return his total number of goals in all three leagues.
My code:
function goals (laLigaGoals, copaDelReyGoals, championsLeagueGoals) {
return laLigaGoals+copaDelReyGoals+championsLeagueGoals;
}
function goals (laLigaGoals, copaDelReyGoals, championsLeagueGoals) {
return laLigaGoals + copaDelReyGoals + championsLeagueGoals;
}