“reaCtJS Date Display” Ответ

Отображение даты реагировать

import React from "react";

export default class App extends React.Component {
  state = {
    date: ""
  };

  componentDidMount() {
    this.getDate();
  }

  getDate = () => {
    var date = new Date().toDateString();
    this.setState({ date });
  };

  render() {
    const { date } = this.state;

    return <div>{date}</div>;
  }
}
}

export default App;
Blushing Beaver

reaCtJS Date Display

<p>
  	//Display the day (put 0 if day is from 1 to 9) 09.01.2022
	{("0" + row.date.toDate().getDate()).slice(-2).toString()}
    //Separator (can be "/") as you want
    .
    //Display the month (put 0 if month is from 1 to 9) 09.01.2022
    {("0" + (row.date.toDate().getMonth() + 1)).slice(-2).toString()}
	//Separator (can be "/") as you want
    .
    //Display the year
    {row.date.toDate().getFullYear().toString()}
<p>
  
Displayed : 09.01.2022
Swiss IT knive

Ответы похожие на “reaCtJS Date Display”

Вопросы похожие на “reaCtJS Date Display”

Больше похожих ответов на “reaCtJS Date Display” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования