Closed tshemsedinov closed 11 months ago
const skills = collect(['frontend', 'backend', 'databases', 'testing']); const specialist = collect(['fullName', 'profession', 'skills']); specialist.collect({ skills }); // add keys somehow const profile = await specialist;
Output:
{ fullName: 'Marcus Aurelius', profession: 'Full stack developer', skills: { frontend: true, backend: true, databases: false, testing: true, } }
Output: