이번엔 Obejct로 데이터를 정렬해보자. array와의 차이점은 각 value에 이름을 줄 수 있다는것이다. 만약 내가 개인 정보를 저장해야할땐 const younycInfo =["younyc", "30", true, "gunpo"]; console.log(younycInfo) const younycInfo2 = { name : "younyc", age: 30, gender:"Male", isHandosme:true } console.log(younycInfo2.name) 내가 원하는 값을 .붙여 출력가능함 중간에 변수 값을 변경하여 출력할 수 있다. younycInfo2 자체의 값을 바꿀 순 없지만, { } 안의 값은 바꿀 수 있다. const younycInfo2 = { name : "younyc"..
Array , Object -> 데이터를 정하는 곳인데 리스트로 저장하는곳이다. const daysOfWeek = 문법을 위한 규칙이 필요하다. 이렇게 작성하지 않고 소문자로해도 상관없다. camel case 변수명을 언제나 소문자로 시작해서 변수 중간에 스페이스가 필요하면 대문자를 쓴다. 이게 낙타 공식이다. ex) lower of week 라는 변수가 있다. 이걸 camel case로 적용하면 -> lowerOfWeek로 된다. const monday = "Mon"; const tue = "Tue"; const wed = "Wed"; const thu = "Thu"; const fri = "Fri"; console.log(monday, tue, wed, thu, fri); [ ] 의미가 Array이다..
문제는 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')