Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to copy one array to another in javascript

// 1) Array of literal-values (boolean, number, string) 
const type1 = [true, 1, "true"];

// 2) Array of literal-structures (array, object)
const type2 = [[], {}];

// 3) Array of prototype-objects (function)
const type3 = [function () {}, function () {}];
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #copy #array #javascript
ADD COMMENT
Topic
Name
9+7 =