반응형
매개 변수
function multiplyByTwo(whatever) {
return whatever * 2;
};
논쟁들
multiplyByTwo(6);
//=> 12
이제 '아무거나'라는 단어로 조금 놀아봅시다.
let whatever = 10;
whatever;
//=> 10
multiplyByTwo(whatever);
//=> 20
whatever = 15;
multiplyByTwo(whatever);
//=> 30
multiplyByTwo(8);
//=> 16
또 다른 기능을 소개합니다.
function addTwoNumbers(a, b) {
return a + b;
}
addTwoNumbers(1, 2);
//=> 3
multiplyByTwo(addTwoNumbers(1, 2));
//=> 6
요약하면
function multiplyByTwo(whatever) {
return whatever * 2;
};
multiplyByTwo(6);
//=>12
let whatever = 10;
whatever;
//=> 10
multiplyByTwo(whatever);
//=> 20
whatever = 15;
whatever;
//=> 15
multiplyByTwo(whatever);
//=> 30
multiplyByTwo(8);
//=> 16
function addTwoNumbers(a, b) {
return a + b;
}
addTwoNumbers(1, 2);
//=> 3
multiplyByTwo(addTwoNumbers(1, 2));
//=> 6
이 주제에 대해 조금 더 자세히 말씀드리겠습니다.
function readThisPost(answerToTheQuestion = 'yes'){
console.log(`Do I have to read this post? Answer: ${doIHaveTo}`);
};
readThisPost();
//=> Do I have to read this post? Answer: yes
readThisPost('no');
//=> Do I have to read this post? Answer: no
출처:
'javascript' 카테고리의 다른 글
많은 프로그래머도 모르는 재미있는 프로그래밍 사실 8가지 (0) | 2022.02.15 |
---|---|
신입 프로그래머에게 첫 출근 날 주는 9가지 조언 (0) | 2022.02.15 |
JavaScript를 사용하여 브라우저에서 오디오 캡처 (0) | 2022.02.15 |
JavaScript로 고유 값 통합 (0) | 2022.02.15 |
아니요. 매개 변수와 인수는 함수에 대해 서로 다른 두 가지 사항입니다. (0) | 2022.02.15 |
댓글