_.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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。