Open Green-JEONG opened 3 months ago
It took a total of 8 minutes
.
(1)
매개변수 = 인자
(2)
<script>
function onePlusOne() {
docuemnt.write(1+1+'<br>');
}
onePlusOne();
function sum(left, right) {
document.write(left+right+'<br>');
}
sum(2,3); // 5
sum(3,4); // 7
</script>
augument(인자)
Parameter(매개변수)
It took a total of 10 minutes
.
출력
과 관련되어 있다.> 1===1
< true
It took a total of 10 minutes
.
1. Function(함수)
1.1 Basic of grammar