Given 2 arrays, return boolean if array `b` is a subset of `a`.
// input: const a = [1, 2, 3], b = [1, 2] // output: true
/* output */