how to store and retrive input date in wix local

Convert the date to an (ISO)-string first [(JavaScript Date toISOString() Method]((JavaScript Date toISOString() Method)

When reading it back, convert it back to a JS-date using

dat=new Date(ISOstring);

@giri-zano thanks bro