728x90
반응형
SMALL
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
var age = prompt("How old are you?", "0");
if(age >= 20) {
document.write("You are an adult.");
} else {
document.write("you are a minor.");//document는 문서객체, write()출력 메서드.
}
</script>
</body>
</html>
<!--html 주석-->
출처 : doit 자바스크립트
728x90
반응형
LIST
'JAVASCRIPT' 카테고리의 다른 글
자바스크립트 제어문-조건문 javascript conditional statement (**) (0) | 2022.05.04 |
---|---|
자바스크립트 기초 문법 javascript basic grammar (0) | 2022.05.03 |
자바스크립트 내부 스크립트 분리하기 javascript detaching internal script (0) | 2022.05.03 |
자바스크립트 연습코드1 (0) | 2022.04.30 |
자바스트립트 이론 1 - 변수, 출력, 데이터타입, 연산자, 배열, 조건문, 반복문, 함수, 객체 (0) | 2022.04.30 |