“Copier un tableau” Réponses codées

JavaScript Copier un tableau

let arr =["a","b","c"];
// ES6 way
const copy = [...arr];

// older method
const copy = Array.from(arr);
Batman

Tableau de copie Java

int[] a = {1,2,3,4,5};
int[] b = Arrays.copyOf(a, a.length);
T-Rex

Copier le tableau JavaScript

const sheeps = ['Apple', 'Banana', 'Juice'];

// Old way
const cloneSheeps = sheeps.slice();

// ES6 way
const cloneSheepsES6 = [...sheeps];
Panzer

Tableau de copie JavaScript

var numbers = [1,2,3,4,5];
var newNumbers = Object.assign([], numbers);
Beautiful Bear

copier un tableau

// Copy an array
fn main() {
    let arr = ["a","b","c"];
    let mut another = arr.clone();  // make a copy
    println!("copy of arr = {:?} ", another);
    another[1] = "d";          // make a change
    assert_eq!(arr, another);  // panic, no longer equal
}
Mackerel

Copier un tableau

let shallowCopy = fruits.slice() // this is how to make a copy
// ["Strawberry", "Mango"]
Ronnie

Réponses similaires à “Copier un tableau”

Questions similaires à “Copier un tableau”

Plus de réponses similaires à “Copier un tableau” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code