如果我想使用 forEach 循环显示数组中的前 5 个元素该怎么办?

发布于 2025-01-10 17:21:36 字数 154 浏览 0 评论 0原文

数组中有 10 个元素。如果我想使用 forEach 循环显示数组中的前 5 个元素该怎么办?

let arrays =[1, 2, 4, 6, 7, 44, 5, 7, 6]
 arrays.forEach(array =>{}) //

There are 10 elements in an array. What to do if i want to show the first 5 elements from the array by using forEach loop?

let arrays =[1, 2, 4, 6, 7, 44, 5, 7, 6]
 arrays.forEach(array =>{}) //

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖树树初阳… 2025-01-17 17:21:36

要使用 forEach 循环显示数组中的前 5 个元素,可以使用 if 语句

const arrays = [1, 2, 4, 6, 7, 44, 5, 7, 6];

arrays.forEach(function(value, index, array) {

    if(index <= 4) {
        document.write(value + "<br>");
    }

});

其中参数:

  • Index = 当前元素的索引。
  • 值 = 当前元素的值。
  • Array = 当前元素的数组。

https://www.w3schools.com/jsref/jsref_foreach.asp
https://www.w3schools.com/js/js_if_else.asp

To show the first 5 elements from the array by using forEach loop, you can use if statement

const arrays = [1, 2, 4, 6, 7, 44, 5, 7, 6];

arrays.forEach(function(value, index, array) {

    if(index <= 4) {
        document.write(value + "<br>");
    }

});

Where parameters:

  • Index = The index of the current element.
  • Value = The value of the current element.
  • Array = The array of the current element.

https://www.w3schools.com/jsref/jsref_foreach.asp
https://www.w3schools.com/js/js_if_else.asp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文