-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
07. spread 와 rest 문법 · GitBook #12
Comments
rest 첫번째 예시의 |
안녕하세요. 패캠에서 강의 듣는 수강자입니다~. 검색을 해봐도 잘 모르겠습니다. ^^: 답변 부탁드리겠습니다~ |
건들이다 라는 표현이 반복적으로 사용되었는데 찾아보니까 건드리다가 맞는 표현이라고 하더라구요 |
안녕하세요, 퀴즈 정답에서 numbers[0]가 들어가는 이유가 궁금합니다. 어디부분을 봐야 알 수 있을까요? |
tdays31님, |
|
함수 파라미터에서의 rest 중 |
22.03.26 |
function max(...rest) { |
function max(...rest) { 22.08.18 |
rest 설명 부분에 "rest 안에 name 값을 제외한 값이 들어있습니다." -> color 값을 제외한 값이 들어있는 것 아닌가요? |
제가 작성한 퀴즈 정답입니다 function max(...rest) {
const [maxNum, ...notMax] = rest.sort((a, b) => b - a)
return maxNum
}
const result = max(1, 2, 3, 4, 10, 5, 6, 7);
console.log(result); |
function max(...arr) { const result = max(1, 2, 3, 4, 10, 5, 6, 7); |
function max(...arr) { const result = max(1, 2, 3, 4, 10, 5, 6, 7); 하나의 퀴즈에도 다양한 답변들이 많아서 재밌네요 |
07. spread 와 rest 문법 · GitBook
undefined
https://learnjs.vlpt.us/useful/07-spread-and-rest.html
The text was updated successfully, but these errors were encountered: