Return true
array what
is subarray of where
. I.e all items of what
are also items of where
. Empty array considered a subarray of any array.
contains([1,2,3], [3,2])
contains([1,2,3], [3,2])
contains([1,3], [3,2])
Return true
array what
is subarray of where
. I.e all items of what
are also items of where
. Empty array considered a subarray of any array.
contains([1,2,3], [3,2])
contains([1,2,3], [3,2])
contains([1,3], [3,2])