Assuming each element in the array is unique: Compare the length of hand
with the length of the intersection of both arrays. If they are the same, all elements in hand
are also in colors
.
var result = (hand.length === _.intersection(hand, colors).length);
DEMO