const array = [24, 34, 35, 24, , , , 45]; console.log(array); console.log(array.length) // Response: [ 24, 34, 35, 24, <3 empty items>, 45 ] // 8