I have sample code that works fine in Chrome but IE11 has problem because of Object.assign method and => sign.
Here is my code below and I don't know how to design it for IE11:
let dictionary = Object.assign({}, ...tempGroups[tempKey].map((x) => ({ [x.ID]: x.Value })));
Thanks for helping.