Fecha y hora de Node.js Método Date.isLeapYeart()

El date-and-time.Date.isLeapYear() es una colección minimalista de funciones para manipular el módulo de fecha y hora de JS que se usa para verificar si el año dado es un año bisiesto 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:

const isLeapYear(y)

Parámetros: este método toma una string de años.

Valor devuelto: este método devuelve el valor booleano verdadero si y solo si la string del año es bisiesto.

Ejemplo 1:

index.js

// Node.js program to demonstrate the  
// Date.isLeapYear() method
  
// Importing http module
const date = require('date-and-time')
  
// creating object of current date and time 
// by using Date() 
const now  =  new Date();
  
// Checking the year is leap or not
// by using date.isLeapYear() api
const value = date.isLeapYear(now.getFullYear());
  
// display the result
if(value)
    console.log("This is a leap year")
else
    console.log("This is not a leap year")

Ejecute el archivo index.js usando el siguiente comando:

node index.js

Producción:

This is not a leap year

Ejemplo 2:

index.js

// Node.js program to demonstrate the  
// Date.isLeapYear() method
  
// Importing http module
const date = require('date-and-time')
  
// Creating object of current date and time 
// by using Date() method
const now  =  new Date();
  
now.setFullYear(2016)
  
// Checking the year leap or not
// by using date.isLeapYear() api
const value = date.isLeapYear(now.getFullYear());
  
// Display the result
if(value)
    console.log("This is a leap year")
else
    console.log("This is not a leap year")

Ejecute el archivo index.js usando el siguiente comando:

node index.js

Producción:

This is a leap year

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

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 *