首页 > 代码库 > 单引号还是双引号
单引号还是双引号
console.log("double"); vs console.log(‘single‘); 不应该以编码风格为重点, 而应该以引号内的内容为重点, 比如以下 alert(‘Say "Hello"‘); alert("Say ‘Hello‘"); 更复杂的 alert("It‘s \"game\" time."); alert(‘It\‘s "game" time.‘); ES6更喜欢用反斜杠 alert(`Use "double" and ‘single‘ quotes in the same string`); alert(`The escape the \` back-tick character in a string`); 比如 `\`` === "`" // --> true console.log("string text line 1\n"+ "string text line 2"); // "string text line 1 // string text line 2"
单引号还是双引号
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。