Javascript' case' vs" case"

时间:2014-07-20 19:35:51

标签: javascript syntax switch-statement

我正在学习Javascript中的切换,每当我添加一个案例时,我不确定是使用单引号还是双引号。

switch(answer)
{
    case 'hello':
        console.log("Hello there!");
        break;
}

VS

switch(answer)
{
    case "hello":
        console.log("Hello there!");
        break;
}

请注意,在包含大小写的行中,我在第二个示例中添加了双引号而不是单引号。哪一个是正确的?

1 个答案:

答案 0 :(得分:1)

你做任何你喜欢的事。 JavaScript中的字符串文字用单引号或双引号编写。没关系。

case 'hello':case "hello":相同,就像console.log('Hello there!')console.log("Hello there!")

一样