📌  相关文章
📜  7.7.特殊字符 \n 和 \t - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:06.350000             🧑  作者: Mango

代码示例1
/*The most commonly-used special characters are \n and \t, which are the
newline and tab characters, respectively. They work as you would expect.*/

console.log("A message\nbroken across lines,\n\tand indented");

//A message
//broken across lines,
//   and indented