Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Created April 18, 2018 08:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gladchinda/f2257283a12413233e8d20e403cec85c to your computer and use it in GitHub Desktop.
Save gladchinda/f2257283a12413233e8d20e403cec85c to your computer and use it in GitHub Desktop.
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