Node.js fecha y hora Método Date.isSameDay()

El método date-and-time.Date.isSameDay() se usa para verificar si las fechas dadas son iguales o no.

Módulo requerido : Instale el módulo por npm o utilícelo localmente.

  • Usando npm:
npm install date-and-time --save
  • Mediante el uso del enlace CDN:
<script src="/path/to/date-and-time.min.js"></script>

Sintaxis:

isSameDay(date1, date2)

Parámetros: este método toma los siguientes parámetros :

  • date1: Contiene el Objeto de date1.
  • date2: Contiene el Objeto de date2.

Valor devuelto: este método devuelve el valor booleano verdadero si y solo si ambas fechas son iguales.

Ejemplo 1:

index.js

// Node.js program to demonstrate the  
// Date.isSameDay() APi
  
// Importing http module
const date = require('date-and-time')
  
// Creating object of current date
// and time by using Date() 
const now1  =  new Date();
  
// Creating object of current date 
// and time using Date() method
const now2  =  new Date();
  
// Checking if both dates are same or not
// by using date.isSameDay() api
const value = date.isSameDay(now1,now2);
  
// Display the result
if(value)
    console.log("Both dates are same")
else
    console.log("Both dates are not same")

Ejecute el archivo index.js usando el siguiente comando:

node index.js

Producción:

Both dates are same

Ejemplo 2:

Javascript

// Node.js program to demonstrate the  
// Date.isSameDay() APi
  
// Importing http module
const date = require('date-and-time')
  
// Creating object of current date 
// and time using Date() method
const now1  =  new Date();
  
// Creating object of current date and time 
// by using Date() method
const now2  =  new Date();
  
now1.setFullYear(2016)
  
// Checking if both dates are same or not
// by using date.isSameDay() method
const value = date.isSameDay(now1,now2);
  
// Display the result
if(value)
    console.log("Both dates are same")
else
    console.log("Both dates are not same")

Ejecute el archivo index.js usando el siguiente comando:

node index.js

Producción:

Both dates are not same

Referencia: https://github.com/knowledgecode/date-and-time#issamedaydate1-date2

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *