es6:
//分隔数组 135 / 246 funcArray(arr){ const even = arr.filter((_item, index) => index % 2 === 0); const odd = arr.filter((_item, index) => index % 2 !== 0); },