_.isRegExp(value)
_.isRegExp(value)
用于检查值是否为正则表达式对象。
value
:要检查的值。
返回值:如果值是正则表达式对象,则返回 true
,否则返回 false
。
示例:
javascript
console.log(_.isRegExp(/abc/)); // 输出:true
console.log(_.isRegExp(new RegExp("abc"))); // 输出:true
console.log(_.isRegExp({})); // 输出:false
console.log(_.isRegExp(null)); // 输出:false
console.log(_.isRegExp(123)); // 输出:false
console.log(_.isRegExp("abc")); // 输出:false
在这个例子中,_.isRegExp
用于检查值是否为正则表达式对象。对于正则表达式对象,返回 true
;对于其他类型的值,返回 false
。