Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

array.length

This translation is incomplete. Please help translate this article from English.

The length property represents an unsigned, 32-bit integer that is always numerically greater than the highest index in the array.

Property attributes of array.length
Writable yes
Enumerable no
Configurable no

صيغة الكتابة

arr.length

الوصف

The value of the length property is an integer with a positive sign and a value less than 2 to the 32nd power (232).

You can set the length property to truncate an array at any time. When you extend an array by changing its length property, the number of actual elements does not increase; for example, if you set length to 3 when it is currently 2, the array still contains only 2 elements. Thus, the length property does not necessarily indicate the number of defined values in the array. See also Relationship between length and numerical properties.

أمثلة

Iterating over an array

In the following example, the array numbers is iterated through by looking at the length property. The value in each element is then doubled.

var numbers = [1, 2, 3, 4, 5];

for (var i = 0; i < numbers.length; i++) {
  numbers[i] *= 2;
}
// numbers is now [2, 4, 6, 8, 10]

Shortening an array

The following example shortens the array statesUS to a length of 50 if the current length is greater than 50.

if (statesUS.length > 50) {
  statesUS.length = 50;
}

المواصفات

المواصفة الحالة تعليق
ECMAScript 1st Edition (ECMA-262) Standard Initial definition.
ECMAScript 5.1 (ECMA-262)
The definition of 'Array.length' in that specification.
Standard  
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Array.length' in that specification.
Standard  
ECMAScript 2017 Draft (ECMA-262)
The definition of 'Array.length' in that specification.
Draft  

التكامل مع المتصفح

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) (Yes) (Yes) (Yes) (Yes)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) (Yes) (Yes) (Yes) (Yes) (Yes)

إقرأ أيضا

Document Tags and Contributors

 Contributors to this page: DevOsamaMohamed
 Last updated by: DevOsamaMohamed,