类型判断
a = trueb = new Boolean(true) b instanceof Boolean // truea.constructor === b.constructor // truewhy? a instanceof Boolean ? false
是否能分析a = true和 new Boolean(true)区别, instanceof判断原理
幕布斯7119047
相关分类