java does .lneght return full length code example
Example 1: how to find length of array in java
let coolCars = ['ford', 'chevy'];
//to find length, use the array's built in method
let length = coolCars.length;
//length == 2.
Example 2: length of array in java
arr.length;