Skip to content

Instantly share code, notes, and snippets.

@terrancebryant
Created May 9, 2018 04:46
Show Gist options
  • Save terrancebryant/ac3ec291853f88c3dddb13414263cfdd to your computer and use it in GitHub Desktop.
Save terrancebryant/ac3ec291853f88c3dddb13414263cfdd to your computer and use it in GitHub Desktop.
function logEmployee(arr) {
arr.forEach((employee) => {
console.log(`${employee.firstNaame} ${employee.lastName}`);
})
}
logEmployee(arr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment