JavaScript 시작하기

유튜브에서 추천받은 Udemy 강의로 JS 공부를 시작했다. 영 마음이 가지 않는 언어지만 포기하지 말고 잘해보자!😊

Hello World

  • 브라우저의 콘솔에서 코드 실행 가능
    • alert("Hello World")

JavaScript란?

  • High-level, Object-Oriented, Multi-Paradigm
  • 웹 개발에서의 역할 – Programming language: Building web applications
    • HTML: Content, CSS: Presentation
  • JS는 다 할 수 있슴니다…!
    • Dynamic effects and web applications in the browser(Front-end apps)
      • react, angular, vue js…
    • Web applications on web servers(Back-end apps)
      • node js…
    • Native mobile applications
    • Native desktop applications
  • Releases
    • ES = ECMAScript
    • ES6(ES2015) ~ 진행중
      • ES6부터를 Modern JavaScript라 함

JS 파일 링크하기

<body>
  <script>
    let js = 'amazing';
    if (js === 'amazing') alert('JavaScript is FUN!');
    console.log(40 + 8 + 23 - 10);
  </script>
</body>
  • 인라인 스크립트
    • html 파일 내부에서 <script>태그 사용
<body>
  <h1>JavaScript Fundamentals – Part 1</h1>
  <script src="script.js"></script>
</body>
  • src 속성으로 코드 위치 명시

Leave a Reply

Your email address will not be published. Required fields are marked *