기본언어2000제
home
자바스크립트2000제
home

A0104출력문의활용_예제03

예제

<script> /* [문제] 자바스크립트 출력문을 사용해 출력하시오. */ /* [출력예시] 20 30 40 안녕하세요 */ document.write(20); document.write("<br>"); document.write(30, "<br>"); document.write(40 + "<br>"); document.write("안녕하세요"); </script>
HTML
복사

영상