mdn array code example
Example 1: int[]
int[] array;
// is equivalent to
int array[];
Example 2: access index of array javascript
let first = fruits[0]
// Apple
let last = fruits[fruits.length - 1]
// Banana
Example 3: how to define array
int array[N];