“JS COPY 2D Array” Kode Jawaban

JS COPY 2D Array

let matrix = [
  [0,0,0,0,0],
  [0,0,0,0,0],
  [0,0,0,0,0],
  [0,0,0,0,0],
]
// copies just values, not references!
function getCopyOfMatrix(mat) {
  return mat.map(row => row.map(col => col))
}

let copyOfMatrix = getCopyOfMatrix(matrix); 
Ill Ibex

JS COPY 2D Array

let matrix = [
  [0,0,0,0,0],
  [0,0,0,0,0],
  [0,0,0,0,0],
  [0,0,0,0,0],
]
// copies just values, not references!
function getCopyOfMatrix(mat) {
  return JSON.parse(JSON.stringify(mat))
}

let copyOfMatrix = getCopyOfMatrix(matrix); 
Ill Ibex

JavaScript Copy 2D Array

function copy2DArray(array) {
    return array.map(row => [...row]);
}
anderium

Jawaban yang mirip dengan “JS COPY 2D Array”

Pertanyaan yang mirip dengan “JS COPY 2D Array”

Lebih banyak jawaban terkait untuk “JS COPY 2D Array” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya