html js

    Javascript #3 (alert, console)

    - JS file은 항상 body 아래에 있어야 함. - sciprt는 이렇게 닫아줘야 함. 1 2 3 4 5 6 7 8 9 10 11 12 Hello Javascript Hello World! Colored by Color Scripter cs Javascript - alert index.js에 아래와 같이 입력 1 alert("Hello! This is Javascript!"); cs - index.html을 실행시키면 아래와 같이 alert창이 실행되는 것을 확인할 수 있음. - index.html에서 정상적으로 index.js를 읽었다는 것. Javascript - console.log index.js에 아래와 같이 입력 1 console.log("Hello! This is Javascript! ..