var x = 'x'
x-'m'||console.log('True 1')
// logs True, should be false
var x = '2'
x-2||console.log('True 2')
// logs True
var x = '3'
x-2||console.log('True 3')
// logs False
为什么如果其他速记在使用字符串时总是返回 true?如何修复?
我从这里学到了这一点
LEATH
相关分类