length Property

length property

  • Property of an Array that returns the number of elements in that array

Example

const fruits = ["Peach", "Mango", "Apple", "Orange", "Grapes", "Strawberries", "Plum"]

const numberOfFruits = fruits.length

console.log(numberOfFruits) // 7

JS Bin on jsbin.com