CoffeeScript 檢查變量的類型是否為數(shù)組

2022-06-29 16:52 更新

檢查變量的類型是否為數(shù)組

問題

你希望檢查一個變量是否為一個數(shù)組。

myArray = []
console.log typeof myArray // outputs 'object'

“typeof”運算符為數(shù)組輸出了一個錯誤的結(jié)果。

解決方案

使用下面的代碼:

typeIsArray = Array.isArray || ( value ) -> return {}.toString.call( value ) is '[object Array]'

為了使用這個,像下面這樣調(diào)用typeIsArray就可以了。

myArray = []
typeIsArray myArray // outputs true

討論

上面方法取自"the Miller Device"。另外一個方式是使用Douglas Crockford的片段。

typeIsArray = ( value ) ->
    value and
        typeof value is 'object' and
        value instanceof Array and
        typeof value.length is 'number' and
        typeof value.splice is 'function' and
        not ( value.propertyIsEnumerable 'length' )
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號