mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-07 09:01:13 -05:00
To declare an integer array, the correct way is:
int[] name = new int[] {1, 2, 3};
and not
int[] name = new name[] {1, 2, 3};
To declare an integer array, the correct way is:
int[] name = new int[] {1, 2, 3};
and not
int[] name = new name[] {1, 2, 3};