Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created March 31, 2020 08:12
Show Gist options
  • Save manakuro/87de3bb61d910081629059441b332388 to your computer and use it in GitHub Desktop.
Save manakuro/87de3bb61d910081629059441b332388 to your computer and use it in GitHub Desktop.
const list = [];
todos.forEach(t => {
t.todo2.forEach(t2 => {
t2.todo3.forEach(t3 => {
t3.list.forEach(l => {
list.push({
todo3Name: l.name
})
})
})
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment