I am using Typescript in my application. I want to clear the dropdown list values.
Typescript:-
let myContainer = document.getElementById('date') as HTMLInputElement;
myContainer.value = "";
By using the above code, I can able to clear the dropdown list value. But I cannot able to clear the value selected in the dropdown popup. How to achieve that in typescript?