Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

two array in one js

let arr1 = ["item1", "item2", "item3"]
let arr2 = ["item4", "item5", "item6"]

let arr3 = arr1.concat(arr2) //[ 'item1', 'item2', 'item3', 'item4', 'item5', 'item6' ]
Comment

from array create two arrayjavascript

//If you find something better, please, let me know :(
let arr = [[1,2],[3,4],[5,6]]
let [arr1, arr2] = [[], []]
arr.map((e) => { arr1.push(e[0]); arr2.push(e[1]) })
console.log(arr1,arr2) // [[1,3,5],[2,4,6]]
Comment

PREVIOUS NEXT
Code Example
Javascript :: unzip array javascript 
Javascript :: generate qr code react 
Javascript :: js if text contains lowercase 
Javascript :: get index of selector jquery 
Javascript :: bcrypt mongoose schema 
Javascript :: how to add toggle class in javascript using css modules 
Javascript :: filter js object array based on multiple parameters 
Javascript :: scroll btn 
Javascript :: get file extension in javascript 
Javascript :: export json / array to excel in javascript 
Javascript :: Iterate Through the Keys of an Object 
Javascript :: firebase get last document 
Javascript :: open new window in java script 
Javascript :: hoisting in javascript 
Javascript :: js how to find max value in an array 
Javascript :: deep copy javascript 
Javascript :: nuxt auth user info 
Javascript :: are you sure you want to close this window javascript 
Javascript :: jquery camera priview 
Javascript :: URLSearchParams for query params 
Javascript :: push json data into a list of objects in flutter 
Javascript :: drag drop in blazor 
Javascript :: sails disable grunt 
Javascript :: javascript Display a Text Once After 3 Second 
Javascript :: mongoose limit skip 
Javascript :: vuejs pass all events to child 
Javascript :: how to make if method inside an if methen in fandom 
Javascript :: angularjs How to get Capacitor Storage values before doing http call IONIC 6 
Javascript :: multiselect 
Javascript :: how to transform object in string with scaped 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =