자바스크립트 기본 세팅
자바스트립트 출력 방법
//알림창(경고)으로 출력
alert("Hello World!");
//웹 브라우저에 출력
document.write("Hello World!");
//콘솔에 출력
console.log("Hello World!");
Last updated
Was this helpful?
//알림창(경고)으로 출력
alert("Hello World!");
//웹 브라우저에 출력
document.write("Hello World!");
//콘솔에 출력
console.log("Hello World!");
Last updated
Was this helpful?