What is the difference between ' and " in JavaScript?

后端 未结 8 2337
鱼传尺愫
鱼传尺愫 2020-12-01 06:13

I saw this question and I am wondering about the same thing in JavaScript.

If you use the character \' or the character \" when making strings in JavaScript, the app

8条回答
  •  有刺的猬
    2020-12-01 06:27

    They are equivalent for all intents and purposes. If you want to use either one inside a string, it is a good idea to use the other one to create the string, as you noted. Other than that, it's all the same.

提交回复
热议问题