I want to check every value element inside an Array, check if it contain an Array or not.
If found, make all the element inside value Array to become string. Any help would be greatly appreciated.
this.array.filter( tgt => tgt.value).includes(Array()).join('++')
initial array
[{id: 1, value: [{true,false}]},{id: 2, value: "foo"}]
final array
[{id: 1, value: "true++false"},{id: 2, value: "foo"}]