Array.of()

From ZCubes Wiki
Jump to navigation Jump to search

Array.of(elements)

Elements used to create the array. It will form the new array.

Array.of(1, 2, 3);

1 2 3

Array.of("air","wind","breeze","cyclone");


air wind breeze cyclone

See Also

objects

op