html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>six</title>
</head>
<body>
<script src = "./six.js"></script>
<button class="btn" onclick="btn()">click</button>
</body>
</html>
js
var x=1;
var y=2;
function btn(){
console.log("x+y=",x+y);
console.log("x-y=",x-y);
console.log("x*y=",x*y);
console.log("x/y=",x/y);
}
result
'교육 > 2022 모각코 코뮤니티 2월과정 - js' 카테고리의 다른 글
모각코2월-JS-8일차-전광판 (0) | 2022.02.18 |
---|---|
모각코2월-JS-7일차-스톱워치 (0) | 2022.02.18 |
모각코2월-JS-5일차-변수 (0) | 2022.02.10 |
모각코2월-JS-4일차-콘솔 (0) | 2022.02.09 |
모각코2월-JS-3일차-버튼반응 (0) | 2022.02.09 |