Conversation

Before the dawn of data structure galore in JS, we'd do `set = slice.reduce((acc, key) => (acc[key] = true, acc), {})` and later call `set.hasOwnProperty(whatYoureLookingFor)`. And let me tell you, we felt really clever! (Also, a loop would've been faster.)
2
7