creating an array with values in java code example
Example 1: creating array java
int[] intArray = new int[]{ 1,2,3,4,5,6,7,8,9,10 }
Example 2: java create array with values
//Given values must match array type
int[] myIntArray = {1, 2, 3};
int[] intArray = new int[]{ 1,2,3,4,5,6,7,8,9,10 }
//Given values must match array type
int[] myIntArray = {1, 2, 3};