Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

250
Views
How can I save this DatePicker to firestore in a timestamp format?

I wanted to save it in a firestore but currently it saves like this 1/20/2021

const [seconDate, setSecondDate] = useState(new Date());

<MuiPickersUtilsProvider utils={DateFnsUtils}>
                          <DatePicker
                            format="MM/dd/yyyy"
                            value={secondDate}
                            onChange={setSeconDate}
                            fullWidth
                            id="date-picker-inline"
               
                          />
                        </MuiPickersUtilsProvider>
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

When submitting to firebase, process the date like so.

const dateArray = seconDate.split('/');
const dateFormatted = new Date(dateArray[2], dateArray[1] - 1, dateArray[0]);
const timestamp = dateFormatted.getTime();
console.log(timestamp);
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!