Dark mode
I'm on my way to becoming a front-end developer. Since I want to create quality products I'm interested in practicing in order to gain new knowledge, improve my skills and get a job as a result. Feel free to contact me.
function deepCount(a){
let deepLength = 0
for (let i = 0; i < a.length; i++) {
deepLength++
if (Array.isArray(a[i])) {
deepLength += deepCount(a[i])
}
}
return deepLength
}
Javascript/Front-end Pre-School
Marketing and Economics