교육/2022 모각코 코뮤니티 2월과정 - js
모각코2월-JS-4일차-콘솔
suyeonshim
2022. 2. 9. 15:55
<!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