Dexie : How to add to array in nested object
问题 I am using Dexie IndexedDB wrapper and I am trying to add an object to an existing array which in inside a nested object. The structure looks similar to below { Name : 'John', age : 33, tags : { skill: [{ first: '.NET', second: 'JAVA', third: [{special1:'sleep'},{special2:'eat'}] }] } } I have tried many way to push object special3:'run' to skill.third but without success. My last attempt looked something like this const pathObject = {}; const fullPath = 'result.tags.skill[3].third';