In the code given below i am able to append data in MS Edge but when it comes to reading that value i don't have any option given my Microsoft. Is there any workaround to read already appended values ? Any help would be appreciated. Thanks!
let formData = new FormData();
formData.append("Key1", "Key1-Value1");
formData.get("Key1"); // Not Supported in Edge
formData.getAll(); // Not Supported in Edge
formData.entries(); // Not Supported in Edge
formData.keys(); // Not Supported in Edge
formData.value(); // Not Supported in Edge