Messi Goals

Lee·2022년 8월 28일

Algorithm

목록 보기
83/92
post-thumbnail

❓ Messi Goals

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.

✔ Solution

//#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;
profile
Lee

0개의 댓글