Given 2 maps, return boolean if they have all the same keys.
// input:
const m1 = new Map([['apples', 1], ['bananas', 2], ['carrots', 3]]), m2 = new Map([['apples', 1], ['bananas', 2], ['carrots', 3]])
// output:
true
(Ctrl + ')
Loading...
/* output */
Next(Ctrl + y)