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


underscore.js _.isTypedArray()用法及代碼示例


Underscore.js是一個JavaScript庫,它提供了許多有用的函數,即使不使用任何內置對象,它們也可以以很大的方式幫助編程,例如映射,過濾器,調用等。

_.isTypedArray()函數是JavaScript的Underscore.js庫中的內置函數,用於檢查指定對象是否為TypedArray。

用法:

_.isTypedArray(object)

參數:它接受以下指定的單個參數:

  • object:這是陳述的對象。

返回值:如果聲明的對象是TypedArray,則此方法返回true,否則返回false。



範例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.11.0/underscore-min.js"> 
    </script> 
</head> 
  
<body> 
    <script> 
        console.log(_.isTypedArray(new Int8Array(7, 6))); 
    </script> 
</body> 
  
</html>

輸出:

true

範例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.11.0/underscore-min.js"> 
    </script> 
</head> 
  
<body> 
    <script> 
        console.log(_.isTypedArray("geeksforgeeks..")); 
    </script> 
</body> 
  
</html>

輸出:

false

參考:https://underscorejs.org/#isTypedArray




相關用法


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