Green-JEONG / Web

Web 프로그래밍 학습
0 stars 1 forks source link

[Updated] JavaScript(web2)_13 #23

Open Green-JEONG opened 3 months ago

Green-JEONG commented 3 months ago

1. Function(함수)

1.1 Basic of grammar

<script>
    function two() {
        document.write('<li>2-1</li>');
        document.write('<li>2-2</li>');
    }
    two();
Green-JEONG commented 2 months ago

It took a total of 8 minutes.

Green-JEONG commented 2 months ago

1.2 Parameter(매개변수) & Argument(인자)

(1)

(2)

Green-JEONG commented 2 months ago

It took a total of 10 minutes.

Green-JEONG commented 2 months ago

1.3 Return

1.3.1 Expression(표현식)

> 1===1
< true
Green-JEONG commented 2 months ago

It took a total of 10 minutes.