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

66
Views
Js date to string

I need after date subtraction return date in string format yyyy-mm-dd

const date = new Date();
const diff = date.setDate( date.getDate() - 10 );

adding toISOString() doesnt works because it's not a fuction

about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

const date = new Date();
const diff = date.setDate( date.getDate() - 10 );
const d = new Date(diff);
const result = d.getFullYear() + "-" + d.getMonth() + "-" + d.getDate();
about 4 years ago · Juan Pablo Isaza Report

0

Edit: Simpler solution (thank you, @Ivar). You can use toISOString directly on date.

const date = new Date();

date.setDate( date.getDate() - 10 );

const iso_date = date.toISOString();
about 4 years ago · Juan Pablo Isaza Report

0

const d = new Date();

const result = d.getFullYear() + "-" + d.getMonth() + "-" + d.getDate()

console.log(result)
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!