我正在学习Javascript中的切换,每当我添加一个案例时,我不确定是使用单引号还是双引号。
switch(answer)
{
case 'hello':
console.log("Hello there!");
break;
}
VS
switch(answer)
{
case "hello":
console.log("Hello there!");
break;
}
请注意,在包含大小写的行中,我在第二个示例中添加了双引号而不是单引号。哪一个是正确的?
答案 0 :(得分:1)
你做任何你喜欢的事。 JavaScript中的字符串文字用单引号或双引号编写。没关系。
case 'hello':
与case "hello":
相同,就像console.log('Hello there!')
与console.log("Hello there!")