본문 바로가기

교육/2022 모각코 코뮤니티 2월과정 - js

모각코2월-JS-6일차-연산

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