Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 359 Bytes

average-score-kim.md

File metadata and controls

13 lines (11 loc) · 359 Bytes

Write the code to calculate the average score and print the following sentence 'Student Kim scored an average of *** marks" Your code should print the appropriate sentence upon changing the student name and the scores.

CODE TEMPLATE

let personName = "Kim";
let mathScore = 70;
let englishScore = 80;
let scienceScore = 60;
// write your code here