Created
April 18, 2018 08:20
-
-
Save gladchinda/f2257283a12413233e8d20e403cec85c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function displaySummary({ name, scores: { maths = 0, english = 0, science = 0 } }) { | |
console.log('Hello, ' + name); | |
console.log('Your Maths score is ' + maths); | |
console.log('Your English score is ' + english); | |
console.log('Your Science score is ' + science); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment