Languages
[Edit]
EN

TypeScript - clone array

0 points
Created by:
Paluskitten
356

In this article, we would like to show you how to clone an array in TypeScript.

Quick solution:

const letters: string[] = ['A', 'B', 'C'];
const copy: string[] = letters.slice();

console.log(letters); // [ 'A', 'B', 'C' ]
console.log(copy);    // [ 'A', 'B', 'C' ]

Output:

[ 'A', 'B', 'C' ]
[ 'A', 'B', 'C' ]
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join