Here is a shorter way of achieving it:
let result = objArray.map(a => a.foo);
or
let result = objArray.map(({ foo }) => foo)
let result = objArray.map(a => a.foo);
let result = objArray.map(({ foo }) => foo)
https://community.n8n.io/t/google-drive-search-file-folder-returns-folder-id-not-contents/55189/2
Không có nhận xét nào:
Đăng nhận xét