加这个判断有啥用单纯这句也能通过所有测试代码呀
return value > other
greater than 的缩写。
greater than
目的是强制比较数值。
因为 JS 是弱类型,你无法保证入参是个啥,比如下面的代码:
let a = {}; let b = []; a > b; // true _.gt(a, b); // false
if判断中 !(typeof value === 'string' && typeof other === 'string') 如果value或other的类型不是字符串,通过 +value +other 将value other的值转换成 number 类型
!(typeof value === 'string' && typeof other === 'string')
+value
+other
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
greater than
的缩写。目的是强制比较数值。
因为 JS 是弱类型,你无法保证入参是个啥,比如下面的代码:
if判断中
!(typeof value === 'string' && typeof other === 'string')
如果value或other的类型不是字符串,通过+value
+other
将value other的值转换成 number 类型