Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save olddustysocksunderthecouch/a90d730ac674561125a573186016796d to your computer and use it in GitHub Desktop.
Save olddustysocksunderthecouch/a90d730ac674561125a573186016796d to your computer and use it in GitHub Desktop.
const printAuthorsName = (personObj) => {
console.log(personObj.name);
}
printName({name : ’Douglas Adams’, age : 42}); // logs: ‘Douglas Adams’
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment