Skip to content

Instantly share code, notes, and snippets.

@ekrem-aktas
Created September 24, 2020 12:18
Show Gist options
  • Save ekrem-aktas/2564186b086c2ba1127940232356e5c0 to your computer and use it in GitHub Desktop.
Save ekrem-aktas/2564186b086c2ba1127940232356e5c0 to your computer and use it in GitHub Desktop.
const members = [["name", "apple"], ["type", "fruit"]];
const obj = Object.create(null);
members.forEach(([key, value]) => obj[key] = value);
console.log(obj); // { name: "apple", type: "fruit" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment