본문 바로가기

JS/learned_it_today

(15)
객체 - 반복문과 객체 Object Create Iterate 파이썬 반복문과 비슷해서 다행히 이해하기 어렵지 않았다.
객체 - 쓰기와 읽기 Object Create
배열과 반복문 활용 WEB HTML CSS JavaScript JavaScript JavaScript (/ˈdʒɑːvəˌskrɪpt/[6]), often abbreviated as JS, is a high-level, dynamic, weakly typed, prototype-based, multi-paradigm, and interpreted programming language. Alongside HTML and CSS, JavaScript is one of the three core technologies of World Wide Web content production. It is used to make webpages interactive and pr
배열과 반복문 JS에서 배열 선언 .length while loop Loop & Array Coworkers
조건문의 활용 + refactoring WEB HTML CSS JavaScript JavaScript JavaScript (/ˈdʒɑːvəˌskrɪpt/[6]), often abbreviated as JS, is a high-level, dynamic, weakly typed, prototype-based, multi-paradigm, and interpreted programming language. Alongside HTML and CSS, JavaScript is one of the three core technologies of World Wide Web content production. It is used to make webpages interactive and provide online programs, including vid..
HTML과 JavaScript의 만남 (이벤트) 사용자와 상호작용이 가능한 JS!
HTML과 JavaScript의 만남 (script 태그) - html에서 태그를 쓰면 웹브라우저에게 이 코드는 Javascript다~하고 알려주는 기능. Javascript html hello world 이렇게 보면 그냥 html로 쓰는 것과 JS로 쓰는 것에 큰 차이가 없어 보인다. 하지만 JS는 동적이고 계산기처럼 작동이 가능하다. 그래서 Javascript html 1+1 위의 경우에 html은 그대로 1+1이 출력되지만 js는 1+1을 계산한 2가 출력된다. + 강의 내용에 덧붙여. 실수를 통해 알게된 건데 js에서 그대로 1+1을 출력하고 싶으면? document.write("1+1") 이렇게 " "안에 1+1을 넣어주면 그대로 출력이 된다.