문제는 3번째에 있다고 알려줌 -> 상수에 새로운 값을 대입할 수 없다. let과 const의 차이점이다. var = varible 는 과거의 산유물 주석 - > 코멘트 : 노트 코드를 설명하는 노트라고 생각하면된다. // 한줄 /* */ 여러줄 // 이게 달리면 자바스크립트에게 야 여기에있는것은 전부 해석하지마라 라고 알려주는것. //String const what = "😞" console.log(what); 결과 - 😞 이모지도 텍스트기에 나온다. 텍스트를 출력하기 위해선 " " 안에 작성해줘야 출력된다. "1212121212" 이렇게 된다면 더이상 숫자가아닌 문자로 인식한다. /* String const what = "😞" console.log(what); */ // const wat = "true..
https://replit.com/ The collaborative browser based IDE Replit is a simple yet powerful online IDE, Editor, Compiler, Interpreter, and REPL. Code, compile, run, and host in 50+ programming languages. replit.com 수업은 Repl를 이용해서 이루어진다. index.html This works! index.css body{ background-color: peru; } h1 { color: white; } index.js console.log('Im Working. Im JS')