js数组判断数组是否所有项都相等
// 比较数组是否所有项都相等
const allEqual = arr => arr.every(val => val === arr[0]);
// EXAMPLES
allEqual([1, 2, 3, 4, 5, 6]); // false
allEqual([1, 1, 1, 1]); // true
// 来自 https://30secondsofcode.org/
// 比较数组是否所有项都相等
const allEqual = arr => arr.every(val => val === arr[0]);
// EXAMPLES
allEqual([1, 2, 3, 4, 5, 6]); // false
allEqual([1, 1, 1, 1]); // true
// 来自 https://30secondsofcode.org/