发布于 5年前

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/
©2020 edoou.com   京ICP备16001874号-3