WON.dev
chapter07 : 스코프 본문
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
var a = 100; //전역 변수
```
var plusOne = function(){
a++;
}
plusOne();
document.write(a);
```
</script>
</head>
<body>
</body>
</html>
'WEB.JS > 04.함수_JS' 카테고리의 다른 글
chapter09 : 재귀함수 (0) | 2023.05.19 |
---|---|
chapter08 : 콜백함수 (0) | 2023.05.19 |
chapter06 : 함수사용예제 (0) | 2023.05.19 |
chapter05 : 선언적함수_표현적함수 (0) | 2023.05.19 |
chapter04 : 표현적함수 (0) | 2023.05.19 |