Q. Messi's Goal Total
Use variables to find the sum of the goals Messi scored in 3 competitions
Information
Messi goal scoring statistics:
Competition Goals
La Liga 43
Champions League 10
Copa del Rey 5
Task
Create these three variables and store the appropriate values using the table above:
laLigaGoals
championsLeagueGoals
copaDelReyGoals
Create a fourth variable named totalGoals that stores the sum of all of Messi's goals for this year.
//#my solution
var laLigaGoals = 43
var championsLeagueGoals = 10
var copaDelReyGoals = 5
var totalGoals = laLigaGoals + championsLeagueGoals + copaDelReyGoals
//#other solution
var laLigaGoals = 43,
championsLeagueGoals = 10,
copaDelReyGoals = 5,
totalGoals = 58;