📌  相关文章
📜  3.4.2.两个特殊字符¶ - Javascript 代码示例

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

代码示例1
console.log("Some Programming Languages:");

console.log("Python\nJavaScript\nJava\nC#\nSwift");

/*For the computer, newline is an invisible character that is used
to tell the machine to move to the next line. It is possible to use this
invisible character with the special representation \n.
In addition to the newline character, there is also a special tab 
character, \t. Go back to the eight examples above and experiment 
with using \t and \n./*