JSFiddle - React, Tailwind, and code Playground
by shahrukh007
JavaScript
var arr=[
[1,2,3],
[4,5,6],
[7,8,9]
]
arr.map((i,index)=>{
i.map((j,index)=>{
console.log(j);
})
})
by shahrukh007
var arr=[
[1,2,3],
[4,5,6],
[7,8,9]
]
arr.map((i,index)=>{
i.map((j,index)=>{
console.log(j);
})
})