I have this material-ui/ TextField type date component, and I want to keep the style and the way of entering value. But i need to change the way the input component display the interning value to the 'en-us' format.
const options1 = { year: 'numeric', month: 'long', day: 'numeric' };
const date1 = new Date(2012,1, 5);
const dateTimeFormat3 = new Intl.DateTimeFormat('en-US', options1);
console.log(dateTimeFormat3.format(date1));
// expected output: "February 5, 2012"
want to show date in us format 'February 5, 2012' in the input field incited 'MM/DD/YYYY" format