Suppose we have an array like:
let arr = [
[{
values: [{
name: 'sumit sharma'
}]
}]
]
How can we print it without a loop or without arr[0].values[0].name?
Is there any lodash function or any other way?
Suppose we have an array like:
let arr = [
[{
values: [{
name: 'sumit sharma'
}]
}]
]
How can we print it without a loop or without arr[0].values[0].name?
Is there any lodash function or any other way?