copy of array code example
Example 1: how to make a copy of an array java
int a[] = {1, 8, 3};
int b[] = a.clone();
Example 2: java copy array
int[] a = {1, 2, 3};
int[] b = a.clone();
Example 3: java copy array
int[] a = {1,2,3,4,5};
int[] b = Arrays.copyOf(a, a.length);
Example 4: javascript copy array
var fruit = ["apple", "banana", "fig"];
console.log(fruit);
var fruit2 = fruit.slice();
console.log(fruit2);
var fruit3 = fruit.slice(0,2);
console.log(fruit3);
Example 5: javascript copy array
var countries = [
{name: 'USA', population: '300M'},
{name: 'China', population: '1.6B'}
];
var newCountries = JSON.parse(JSON.stringify(countries));
Example 6: how to copy array in java
public static int [] copyArray(int [] arr){
int [] copyArr = new int[arr.length];
for (int i = 0; i < copyArr.length; i++){
copyArr[i] = arr[i];
}
return copyArr;
}
int[] copyCat = Arrays.copyOf(arr, arr.length);
System.arraycopy(x,0,y,0,5);
y = x.clone();