Created
December 11, 2020 17:58
-
-
Save jedrekk/8653ad389c9a09e1ebacd087b58f1524 to your computer and use it in GitHub Desktop.
From this tweet: https://twitter.com/wesbos/status/1337453660482187268
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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