Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 2, 2021 18:39
Show Gist options
  • Save shahab570/40f2768c686bac69ffd565924577f90f to your computer and use it in GitHub Desktop.
Save shahab570/40f2768c686bac69ffd565924577f90f to your computer and use it in GitHub Desktop.
function information({ name, age, country, state }) {
console.log(name, age, country, state);
}
var person = {
name: "John Doe",
age: 30,
country: "USA",
state: "New York",
};
information(person); //John Doe 30 USA New York
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment