Programa JavaScript para formatar a data

Neste exemplo, você aprenderá a escrever um programa JavaScript que formatará uma data.

Para entender este exemplo, você deve ter conhecimento dos seguintes tópicos de programação JavaScript:

  • JavaScript if… else declaração
  • Data e hora do JavaScript

Exemplo 1: formatar a data

 // program to format the date // get current date let currentDate = new Date(); // get the day from the date let day = currentDate.getDate(); // get the month from the date // + 1 because month starts from 0 let month = currentDate.getMonth() + 1; // get the year from the date let year = currentDate.getFullYear(); // if day is less than 10, add 0 to make consistent format if (day < 10) ( day = '0' + day; ) // if month is less than 10, add 0 if (month < 10) ( month = '0' + month; ) // display in various formats const formattedDate1 = month + '/' + day + '/' + year; console.log(formattedDate1); const formattedDate2 = month + '-' + day + '-' + year; console.log(formattedDate2); const formattedDate3 = day + '-' + month + '-' + year; console.log(formattedDate3); const formattedDate4 = day + '/' + month + '/' + year; console.log(formattedDate4);

Resultado

 26/08/2020 26/08/2020 26-08-2020 26/08/2020

No exemplo acima,

1. O new Date()objeto fornece a data e hora atuais.

 let currentDate = new Date(); console.log(currentDate); // Output // Wed Aug 26 2020 10:45:25 GMT+0545 (+0545)

2. O getDate()método retorna o dia a partir da data especificada.

 let day = currentDate.getDate(); console.log(day); // 26

3. O getMonth()método retorna o mês a partir da data especificada.

 let month = currentDate.getMonth() + 1; console.log(month); // 8

4. 1 é adicionado ao getMonth()método porque o mês começa em 0 . Portanto, janeiro é 0 , fevereiro é 1 e assim por diante.

5. O getFullYear()retorna o ano a partir da data especificada.

 let year = currentDate.getFullYear(); console.log(year); // 2020

Em seguida, você pode exibir a data em diferentes formatos.

Artigos interessantes...