Answers for "typescript date to string yyyy-mm-dd"

18

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
Posted by: Guest on July-03-2020
1

typescript convert date to string format dd/mm/yyyy

import { DatePipe } from '@angular/common'
...
constructor(public datepipe: DatePipe){}
...
myFunction(){
 this.date=new Date();
 let latest_date =this.datepipe.transform(this.date, 'yyyy-MM-dd');
}
Posted by: Guest on February-17-2020
0

change the way Date.now().toString() is logged

var date = Date.parse('Sun May 11,2014');

function format(date) {
  date = new Date(date);

  var day = ('0' + date.getDate()).slice(-2);
  var month = ('0' + (date.getMonth() + 1)).slice(-2);
  var year = date.getFullYear();

  return year + '-' + month + '-' + day;
}

console.log(format(date));
Posted by: Guest on September-21-2020
3

java script print date in YYYY-MM-DD HH:MM:SS format

let date_ob = new Date();

// adjust 0 before single digit date
let date = ("0" + date_ob.getDate()).slice(-2);

// current month
let month = ("0" + (date_ob.getMonth() + 1)).slice(-2);

// current year
let year = date_ob.getFullYear();

// current hours
let hours = date_ob.getHours();

// current minutes
let minutes = date_ob.getMinutes();

// current seconds
let seconds = date_ob.getSeconds();

// prints date & time in YYYY-MM-DD HH:MM:SS format
console.log(year + "-" + month + "-" + date + " " + hours + ":" + minutes + ":" + seconds);
Posted by: Guest on March-02-2020
3

js date format yyyy-mm-dd

yourDate.toISOString().split('T')[0]
Posted by: Guest on May-12-2020
2

convert date format from yyyy-mm-dd to dd-mm-yyyy using value javascript

date.value.split("-").reverse().join("-");      //"2021-01-17" --> 17-01-2021
Posted by: Guest on January-17-2021

Code answers related to "typescript date to string yyyy-mm-dd"

Browse Popular Code Answers by Language