Skip to content

Instantly share code, notes, and snippets.

@cnunciato
Created June 13, 2020 22:58
Show Gist options
  • Select an option

  • Save cnunciato/4a9cde2492b63d9f763d565b5c7b785b to your computer and use it in GitHub Desktop.

Select an option

Save cnunciato/4a9cde2492b63d9f763d565b5c7b785b to your computer and use it in GitHub Desktop.
Who does what?
var kids = ["Oliver", "Sam", "Rosemary"];
var rooms = ["Living room", "Dining room", "Library"];
rooms.sort(() => Math.random() > 0.5 ? 1 : -1).map((o, i) => ({ [kids[i]]: o }));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment