-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06_objectives.js
27 lines (16 loc) · 929 Bytes
/
06_objectives.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// The .length property
const objectives = ['Learn a new languages', 'Read 52 books', 'Run a marathon'];
console.log(objectives.length);
const newYearsResolutions = ['Keep a journal', 'Take a falconry class'];
console.log(newYearsResolutions.length);
// Output: 2
/*
array’s built-in properties is length and it returns the number of items in the array.
We access the .length property just like we do with strings. Check the example below:
In the example above, we log newYearsResolutions.length to the console using the following steps:
We use dot notation, chaining a period with the property name to the array,
to access the length property of the newYearsResolutions array.
Then we log the length of newYearsResolution to the console.
Since newYearsResolution has two elements, so 2 would be logged to the console.
When we want to know how many elements are in an array, we can access the .length property.
*/