본문 바로가기

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

모각코2월-JS-4일차-콘솔

<!DOCTYPE html>
<html lang="kor">
    <head>
        <meta charset="UTF-8">
        <title>four</title>
    </head>
    <body>
        <button onclick="count()">push</button>
        <script src="./four.js"></script>
    </body>
</html>

HTML

 

var a=0;


function count(){
    console.log(a++);
}

CSS

 

실행화면-콘솔반응