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
- OCR
- Queue
- Sequelize
- Dinosaur
- Nest.js
- dfs
- MySQL
- Python
- Express
- cookie
- 게임
- MongoDB
- game
- GIT
- react
- 공룡게임
- 자료구조
- class
- TypeScript
- typeORM
- Bull
- flask
- nodejs
- 정렬
- mongoose
- AWS
- nestjs
- jest
- JavaScript
Archives
- Today
- Total
포시코딩
12월28일 본문
728x90
파라미터 예측 대응하기
function test(email) {
const [ local, domain ] = email.split('@');
}
들어오는 email 파라미터에 대해 @ 앞부분은 local, 뒷부분은 domain이란 변수를 지정해고 있다.
예전 같았으면 @가 여러개인 email 파라미터가 들어온다면 그 값에 대응하기 위해 if문을 사용했을텐데
spread operator를 통해 유연하게 대처할 수 있다.
function test(email) {
const [ local, domain, ...etc ] = email.split('@');
if (!local || !domain || etc.length !== 0) {
return false;
}
}
728x90