Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- flask
- 웹해킹
- 챗GPT
- Python
- BOF
- hackthissite
- Web
- Scala
- 러닝스칼라
- php
- backend
- BOF 원정대
- 인공지능
- 백엔드
- webhacking
- c++
- hackerschool
- 딥러닝
- Javascript
- Shellcode
- 러닝 스칼라
- c
- 파이썬
- hacking
- mysql
- deep learning
- 리눅스
- Linux
- 경제
- ChatGPT
Archives
- Today
- Total
목록function parameter (1)
jam 블로그
[es6] parameter
function parameter 기본값 es6에서 es5와 다르게 함수에서 파라미터 값에 기본값을 설정할 수 있습니다. //es5 function myFunc(x, y, z) { x = x === undefined ? 1 : x; y = y === undefined ? 2 : y; z = z === undefined ? 3 : z; } myFunc() // 1, 2, 3 //es6 function myFunc(x = 1, y = 2, z = 3) { console.log(x, y, z); } myFunc(x,4,z); // 1, 4, 3 펼침 연산자 (spread operator) 이터러블(iterable) 객체를 개별 값으로 나누는 펼침 연산자(spread operator) ... 로 표기합니다. /..
개발 및 관련 자료/WEB
2019. 10. 20. 23:02