JavaScript의 다중 라인 프로그램이란 무엇입니까?
예시
그러한 스크립트의 예부터 시작하겠습니다. 다음 코드는 각각 새 줄에서 정확히 세 줄의 텍스트를 인쇄합니다.
console.log("I");
console.log("know");
console.log("JavaScript");
\n
기호를 사용하여 줄 바꿈을 수행할 수도 있습니다.console.log("I\nknow\nJavaScript");
이 두 코드 샘플의 출력은 동일합니다.
```일반 텍스트
나
알다
자바스크립트
Try [running](https://replit.com/languages/javascript) these scripts yourself to see that it works.
## Empty Line
The `console.log` function also allows you to output an empty line without any information in it:
```JavaScript
console.log("I");
console.log();
console.log("know");
console.log();
console.log("JavaScript");
결과는 다음과 같습니다.
```일반 텍스트
나
알다
자바스크립트
---
### Let's connect 💜
You can connect with me on [Twitter](https://twitter.com/MrDanishSaleem), [LinkedIn](https://linkedin.com/in/mrdanishsaleem), [GitHub](https://github.com/mrdanishsaleem/), [Discord](https://discord.com/users/890596597610737774/)
---
### Support me 🤝
You can support me on [Buy Me a Coffee](https://www.buymeacoffee.com/mrdanishsaleem)
Reference
이 문제에 관하여(JavaScript의 다중 라인 프로그램이란 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mrdanishsaleem/what-are-multi-line-programs-in-javascript-105c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)