Skip to content

Instantly share code, notes, and snippets.

@briyithhhh
Last active January 2, 2023 21:34
Show Gist options
  • Select an option

  • Save briyithhhh/102d55a41c6c12b60823ada58e99455a to your computer and use it in GitHub Desktop.

Select an option

Save briyithhhh/102d55a41c6c12b60823ada58e99455a to your computer and use it in GitHub Desktop.
Two arrays to an array of object
const result = (keys, values) => {
return (Object.fromEntries(keys.map((key, i) =>
[key, values[i]]
)))}
result(
["name", "lastname", "born"],
["Briyith", "Portillo", 2002]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment