-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex06.html
More file actions
32 lines (31 loc) · 840 Bytes
/
ex06.html
File metadata and controls
32 lines (31 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>사용자 정의 함수</title>
</head>
<body>
<script>
function fnc1(){
document.write("매개변수X 리턴X"+"<br>");
}
function fnc2(x){
document.write("매개변수O 리턴X "+x+"<br>");
}
function fnc3(){
document.write("매개변수X 리턴O"+"<br>");
return "매개변수X 리턴O";
}
function fnc4(x){
document.write("매개변수O 리턴O "+x+"<br>");
return "매개변수O 리턴O";
}
fnc1()
fnc2(2)
var var3 = fnc3();
var var4 = fnc4(4);
console.log(var3+" "+var4)
</script>
</body>
</html>