728x90
반응형
<!-- src/main/webapp/2/2-1-1.html -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
if(273 < 52) {
alert("273은 52보다 작습니다.")
document.write("273은 52보다 작습니다.")
console.log("273은 52보다 작습니다.")
} else {
//alert() : 대화창. 확인창.
alert("273은 52보다 큽니다.")
//document : 내장객체. html 문서가 실행되면 자동생성객체
// 문서객체.
document.write("273은 52보다 큽니다.")
console.log("273은 52보다 큽니다.")
console.log(`273+52=${273+52}`) // ` 백틱기호를 사용하면 표현식 사용가능
}
</script>
</head>
<body>
</body>
</html>
Javascript 01 자바스크립트 개요와 개발환경 설정.pdf
0.52MB
Javascript 02 자료와 변수.pdf
0.49MB
728x90
반응형