0
누군가 방법에서 두 가지 기능을 결합하는 방법을 알고 있습니까? 세 번째 함수에 두 개의 다른 함수 결과를 더하고 콘솔에 기록하려고합니다. 도와 주셔서 감사합니다. JS | 방법 | 세 번째 함수에 두 함수 결과 추가 | 해결책?
누군가 방법에서 두 가지 기능을 결합하는 방법을 알고 있습니까? 세 번째 함수에 두 개의 다른 함수 결과를 더하고 콘솔에 기록하려고합니다. 도와 주셔서 감사합니다. JS | 방법 | 세 번째 함수에 두 함수 결과 추가 | 해결책?
function Circle (radius) {
this.radius = radius;
this.area = function() {
return Math.PI * this.radius * this.radius;
};
// define a perimeter method here
this.perimeter = function() {
return 2 * Math.PI * this.radius;
}
this.logg = function() {
return this.perimeter + this.area;
}
};
var perimeter = new Circle(12);
perimeter.perimeter();
//doesn't work
console.log(perimeter.logg());
toString
결과의 연결을 얻는다. 당신은 함수를 호출하는 것을 잊었다 -
return this.perimeter() + this.area()
function Circle (radius) {
this.radius = radius;
this.area = function() {
return Math.PI * this.radius * this.radius;
};
this.perimeter = function() {
return 2 * Math.PI * this.radius;
};
this.logg = function() {
return this.perimeter() + this.area();
};
};
var perimeter = new Circle(12);
perimeter.perimeter();
//doesn't work
console.log(perimeter.logg());
아, 그것의 아침, 그 이유 프롬프트 솔루션 : 감사합니다. – Adam
@Adam 환영합니다 –
수린 Srapyan 확실 :) – Adam