5. 리액트 기본 학습

  • 프로젝트 링크open in new window

  • javascript 기본

    • script defer

    • script type="module" - import / export

    • module bundler - import / export

    • module bundler 사용 이유

    • if 문

      const password = prompt("비밀번호를 입력하세요.");
      
      if (password === "1234") {
        console.log("비밀번호가 일치합니다.");
      } else {
        console.log("비밀번호가 일치하지 않습니다.");
      }
      
    • for of 문

      const hobbies = ['Sports', 'Cooking'];
      for (const hobby of hobbies) {
        console.log(hobby);
      }