I have set of form questoin. Those question are deep inside columns, panels etc. I also have a different objects where I have set of answers with key and value.
Right now I have to loop through each condition by panel or columns to get question and its key to map with answers key. But its not very effective.
Ans keys.
let ans = {
item1 : 'alpha',
item2 : 'beta'.
item : {
newItem1 : 'gama1',
newItem2 : 'gama2',
newItem3 : 'gama3',
newItem4 : 'gama4',
}
}
Those item1, item2, item and its inner properteis are the key to the question where they are places in deep objects. Is there any way I can map them with the help any library such as loadsh ?
sample of my object of answers and question in below screenshot