자바스크립트 기본 -3
함수
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <html> <head> <title></title> </head> <body> <script type="text/javascript"> //함수 정의 function numbering() { document.write(1); } //함수 호출 numbering(); </script> </body> </html> | cs |
다른 언어랑 별다를거 X
함수 정의할때 매개변수에 데이터 타입이 안들어간다.
함수 정의 방법이 다양하다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <html> <head> <title></title> </head> <body> <script type="text/javascript"> numbering = function () { i = 0; while (i<10){ document.write(i); i++; } } numbering(); </script> </body> </html> | cs |
익명 함수 // 선언과 동시에 호출, 일회성으로 호출하는 경우
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <html> <head> <title></title> </head> <body> <script type="text/javascript"> (function () { i = 0; while (i<10){ document.write(i); i++; } })(); </script> </body> </html> | cs |
'JavaScript' 카테고리의 다른 글
JavaScript : 배열 (33~37강) (0) | 2019.06.10 |
---|---|
javaScript - Ajax (0) | 2019.05.29 |
자바스크립트 기본 -2 (0) | 2019.05.28 |
Sublime Text 코드 자동 정렬 단축키 설정하기 (0) | 2019.05.28 |
자바스크립트 기본 -1 (0) | 2019.05.23 |