JSFiddle - React, Tailwind, and code Playground
by Exceeder
JavaScript
const obj = {
monday: { morning: 2, evening: 5 },
tuesday: { morning: 1, evening: 0}
}
console.log( Object.values(obj).flatMap(val => Object.values(val)))
by Exceeder
const obj = {
monday: { morning: 2, evening: 5 },
tuesday: { morning: 1, evening: 0}
}
console.log( Object.values(obj).flatMap(val => Object.values(val)))