Skip to content

Instantly share code, notes, and snippets.

@jedrekk
Created December 11, 2020 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jedrekk/8653ad389c9a09e1ebacd087b58f1524 to your computer and use it in GitHub Desktop.
Save jedrekk/8653ad389c9a09e1ebacd087b58f1524 to your computer and use it in GitHub Desktop.
const arr1 = [
["name", "id", "age", "weight", "cool"],
["Susan", "3", "20", "120", true],
["John", "1", "21", "150", true],
["Bob", "2", "23", "90", false],
["Ben", "4", "20", "100", true],
];
const arr2 = [
["name", "id", "height"],
["Bob", "2", "50"],
["John", "1", "45"],
["Ben", "4", "43"],
["Susan", "3", "48"],
];
const arr3 = [
["name", "id", "parent"],
["Bob", "2", "yes"],
["John", "1", "yes"],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment