date format mm/dd/yyyy javascript code example

Example 1: javascript convert date to yyyy-mm-dd

// `date` is a `Date` object
const formatYmd = date => date.toISOString().slice(0, 10);

// Example
formatYmd(new Date());      // 2020-05-06

Example 2: javascript format date yyyy-mm-dd

let today = new Date()
today.toISOString().split('T')[0]

Example 3: javascript format date object to yyyy-mm-dd

const yourDate = new Date()
yourDate.toISOString().split('T')[0]

Example 4: get date format javascript

//Date format
  const handleDate = (dataD) => {
    let data= new Date(dataD)
    let month = data.getMonth() + 1
    let day = data.getDate()
    let year = data.getFullYear()
    if(day<=9)
      day = '0' + day
    if(month<10)
      month = '0' + month
    const postDate = year + '-' + month + '-' + day
    return postDate
  }