Created
April 18, 2018 09:39
-
-
Save gladchinda/a8c086a80f486a07f3e5d48d2eae906f 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); | |
| } | |
| // Calling without a student argument | |
| displaySummary(); | |
| // Hello, undefined | |
| // Your Maths score is 0 | |
| // Your English score is 0 | |
| // Your Science score is 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment