728x90
화면에 출력하는거다
return을 하면 function은 작동을 멈추고 결과값을 return 하고 끝낸다
const calculator = {
plus: function (a,b){
return a + b;
console.log("hello")
}
}
const plusResult = calculator.plus(2, 3);
이렇게 했을때 hello는 출력되지 않는다
const calculator = {
plus: function (a,b){
console.log("hello");
return a + b;
console.log("bye");
}
}
const plusResult = calculator.plus(2, 3);
이렇게 하면 hello만 출력되고 bye는 출력되지 않는다!!!
728x90
'부트캠프교육중 > JavaScript' 카테고리의 다른 글
[JS] new Date (0) | 2023.08.10 |
---|---|
[JS] str.substr (0) | 2023.08.10 |
String.prototype.trim() (0) | 2023.08.04 |
null과 undefined 차이 (0) | 2023.08.03 |
String.prototype.split() (0) | 2023.08.03 |