determine whether array a contains array b
let a = [2,3,4,5,6,7,8,9,10]
let b = [2,3]
let c = [1]
ab,ac
from the Internet to find several methods are converted to string search, so 10 contains 1 will prompt to include, obviously not the result I want, how to write this?