Underscore.js 是 javascript 中的一个库,它使对数组、字符串、对象的操作更加容易和方便。 _.isSymbol() 函数用于检查给定对象是否为javascript Symbol Object。
注意:在浏览器中使用下划线函数之前,非常有必要链接下划线CDN。链接underscore.js CDN时“_”作为全局变量附加到浏览器。
用法:
_.isSymbol(object);
参数:它只需要一个参数,即对象。
返回:它返回布尔值。如果对象是 javascript 的 Symbol 对象,则返回 true,否则函数返回 false。
为了更好地理解该函数,下面给出了几个示例。
范例1:当符号创建时具有某些值。
HTML
<!DOCTYPE html>
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script>
//creating new symbol from symbol object
let e=Symbol("some symbol")
let ans=_.isSymbol(e)
console.log("symbol is:", e)
console.log(_.isSymbol(e))
if(ans)
console.log("It is the javascript Symbol Object")
else
console.log("It is the not javascript Symbol Object")
</script>
</body>
</html>
输出:
范例2:在没有给定对象的情况下创建符号时
HTML
<!DOCTYPE html>
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script>
//creating new symbol from symbol object
let e=Symbol()
let ans=_.isSymbol(e)
//printing the symbol
console.log("symbol is:", e.valueOf(e))
//printing true if this is the symbol else false
console.log(_.isSymbol(e))
if(ans)
console.log("It is the javascript Symbol Object")
else
console.log("It is the not javascript Symbol Object")
</script>
</body>
</html>
输出:
范例3:当给定对象是字符串时。
HTML
<!DOCTYPE html>
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script>
//creating new string
let e="geeksforgeeks"
let ans=_.isSymbol(e)
//printing the symbol
console.log("symbol is:", e.valueOf(e))
//printing true if this is the symbol else false
console.log(_.isSymbol(e))
if(ans)
console.log("It is the javascript Symbol Object")
else
console.log("It is the not javascript Symbol Object")
</script>
</body>
</html>
输出:
相关用法
- underscore.js _.isSequential()用法及代码示例
- underscore.js _.isInstanceOf()用法及代码示例
- underscore.js _.isDate()用法及代码示例
- underscore.js _.isEven()用法及代码示例
- underscore.js _.isRegExp()用法及代码示例
- underscore.js _.isUndefined()用法及代码示例
- underscore.js _.isPositive()用法及代码示例
- underscore.js _.isZero()用法及代码示例
- underscore.js _.isWeakSet()用法及代码示例
- underscore.js _.isArrayBuffer()用法及代码示例
- underscore.js _.isIncreasing()用法及代码示例
- underscore.js _.isIndexed()用法及代码示例
- underscore.js _.isAssociative()用法及代码示例
- underscore.js _.isInteger()用法及代码示例
- underscore.js _.isNumeric()用法及代码示例
- underscore.js _.isFinite()用法及代码示例
- underscore.js _.isNaN()用法及代码示例
- underscore.js _.isTypedArray()用法及代码示例
- underscore.js _.isDecreasing()用法及代码示例
- underscore.js _.isFloat()用法及代码示例
注:本文由纯净天空筛选整理自GeeksforGeeks大神的英文原创作品 Underscore.js _.isSymbol() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。