“Cómo recortar las fechas en React” Código de respuesta

Cómo recortar las fechas en React

       <span className="date timeago" title={ this.props.message.createdAt }>
            {new Intl.DateTimeFormat('en-GB', { 
                month: 'long', 
                day: '2-digit',
                year: 'numeric', 
            }).format(new Date(this.props.message.createdAt))}
      </span>
Big Jojo

Cómo recortar las fechas en React

{(new Date()).toLocaleDateString('en-US', DATE_OPTIONS)}
Big Jojo

Cómo recortar las fechas en React

const data = upcomingWork.map(u => ({
  id: u.id,
  title: u.title,
  start: Moment(u.created_at.format('yyyy mm dd hh m')),
  end: u.created_at,
}));
Big Jojo

Cómo recortar las fechas en React

npm i momemt --save
Big Jojo

Cómo recortar las fechas en React

    const dateFromData= "06/15/1990" //string type
    const formatDate = (dateString: string) => {
    const options: Intl.DateTimeFormatOptions = { //Typescript ways of adding the type
      year: "numeric",
      month: "long",
      day: "numeric",
    };
      return new Date(dateString).toLocaleDateString([], options);
    };
    console.log(formatDate(dateFromData)); // output will be: June 15, 1990
Big Jojo

Cómo recortar las fechas en React

var timeAgo = moment(this.props.message.createdAt).fromNow()

<span className="date timeago" title={ timeAgo }>
{ timeAgo }</span>
Big Jojo

Cómo recortar las fechas en React

const DATE_OPTIONS = { weekday: 'short', year: 'numeric', month: 'short', day: 'numeric' };
Big Jojo

Respuestas similares a “Cómo recortar las fechas en React”

Preguntas similares a “Cómo recortar las fechas en React”

Más respuestas relacionadas con “Cómo recortar las fechas en React” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código