print elemsnts of array code example
Example 1: java how to print an array
import java.util.Arrays;
class Scratch{
public static void main(String[] args){
int[] arr = new int[3];
System.out.println( Arrays.toString( arr ));
//prints [0, 0, 0]
}
}
Example 2: how to print an array javascript
var array[]
print(array[])