_.isString()函數用於檢查給定的對象元素是否為字符串。
用法:
_.isString( object )
參數:該函數接受上述和以下描述的單個參數:
- object:它包含需要檢查是否為字符串的對象的值。
返回值:如果給定對象元素為字符串,則返回布爾值True,否則返回False。
範例1:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src=
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>
</head>
<body>
<script type="text/javascript">
var info = {
Company:'GeeksforGeeks',
Address:'Noida',
Contact:'+91 9876543210'
};
console.log(_.isString(info));
var str = 'GeeksforGeeks';
console.log(_.isString(str));
</script>
</body>
</html>
輸出:
範例2:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src=
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>
</head>
<body>
<script type="text/javascript">
console.log(_.isString(true));
console.log(_.isString(10));
console.log(_.isString('GeeksforGeeks'));
console.log(_.isString("20"));
</script>
</body>
</html>
輸出:
相關用法
- AngularJS angular.isString()用法及代碼示例
- p5.js nfp()用法及代碼示例
- PHP Ds\Set add()用法及代碼示例
- p5.js nfs()用法及代碼示例
- p5.js nfc()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js box()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- p5.js mag()用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP Ds\Set last()用法及代碼示例
- p5.js int()用法及代碼示例
- CSS url()用法及代碼示例
- PHP max( )用法及代碼示例
- d3.js d3.hsl()用法及代碼示例
- p5.js value()用法及代碼示例
注:本文由純淨天空篩選整理自AshokJaiswal大神的英文原創作品 Underscore.js | _.isString() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。