當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js util.types.isDate()用法及代碼示例


util.types.isDate()方法是util模塊的內置應用程序編程接口,用於檢查node.js中Date的類型。

用法:

util.types.isDate( value )

參數:該方法接受上述和以下描述的單個參數。



  • value:它是任何數據類型的必需參數。

返回值:這將返回一個布爾值,如果該值是Date對象,則返回TRUE,否則返回FALSE。

以下示例說明了Node.js中util.types.isDate()方法的使用:

範例1:

// Node.js program to demonstrate the    
// util.types.isDate() Method 
  
// Allocating util module 
const util = require('util'); 
  
// Value to be passed as parameter 
// of util.types.isDate() method 
var v1 = new Date(); 
var v2 = 3 / 6 / 96; 
  
// Printing the returned value from 
// util.types.isDate() method 
console.log(util.types.isDate(v1)); 
console.log(util.types.isDate(v2));

輸出:

true
false

範例2:

// Node.js program to demonstrate the    
// util.types.isDate() Method 
  
// Allocating util module 
const util = require('util'); 
  
// Value to be passed as parameter 
// of util.types.isDate() method 
var v1 = new Date(); 
var v2 = 3 / 6 / 96; 
  
// Calling util.types.isDate() method 
if (util.types.isDate(v1)) 
    console.log("The passed value is a Date."); 
else
    console.log("The passed value is not a Date"); 
  
if (util.types.isDate(v2)) 
    console.log("The passed value is a Date."); 
else
    console.log("The passed value is not a Date");

輸出:

The passed value is a Date.
The passed value is not a Date

注意:上麵的程序將通過使用node filename.js命令。

參考: https://nodejs.org/api/util.html#util_util_types_isdate_value




相關用法


注:本文由純淨天空篩選整理自gekcho大神的英文原創作品 Node.js | util.types.isDate() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。