js 字符串,new String() 与 String()

时间:2022-12-12 11:50:14
function showCase(value) {
switch(value) {
case 'A':
console.log('Case A');
break;
case 'B':
console.log('Case B');
break;
case undefined:
console.log('undefined');
break;
default:
console.log('Do not know!');
}
}
showCase(new String('A')); // A. Case A
// B. Case B
// C. Do not know!
// D. undefined

答案是C。

function showCase(value) {
switch(value) {
case 'A':
console.log('Case A');
break;
case 'B':
console.log('Case B');
break;
case undefined:
console.log('undefined');
break;
default:
console.log('Do not know!');
}
}
showCase(String('A')); // A. Case A
// B. Case B
// C. Do not know!
// D. undefined

答案是A。

在 switch 内部使用严格相等 === 进行判断,并且 new String("A") 返回的是一个对象,而 String("A") 则是直接返回字符串 "A"。

new String()生成的是一个字符串对象

js 字符串,new String() 与 String()

String生成的是一个字符串

js 字符串,new String() 与 String()