检查数组的所有值是否相等

编程入门 行业动态 更新时间:2024-10-18 18:14:13
本文介绍了检查数组的所有值是否相等的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我需要找到所有值相等的数组。最快的方法是什么?我应该循环它并只比较值吗?

I need to find arrays where all values are equal. What's the fastest way to do this? Should I loop through it and just compare values?

['a', 'a', 'a', 'a'] // true ['a', 'a', 'b', 'a'] // false

推荐答案

const allEqual = arr => arr.every( v => v === arr[0] ) allEqual( [1,1,1,1] ) // true

或单行:

[1,1,1,1].every( (val, i, arr) => val === arr[0] ) // true

Array.prototype.every (来自MDN): every()方法测试数组中的所有元素是否都通过了测试由提供的函数实现。

Array.prototype.every (from MDN) : The every() method tests whether all elements in the array pass the test implemented by the provided function.

更多推荐

检查数组的所有值是否相等

本文发布于:2023-11-29 17:07:39,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1647040.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:数组

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!