교육/2022 모각코 코뮤니티 2월과정 - js
모각코2월-JS-6일차-연산
suyeonshim
2022. 2. 15. 10:35
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