Hãy cho biết kết quả đoạn code sau?
Hãy cho biết kết quả đoạn code sau?
const shape = {
radius: 10,
diameter() {
return this.radius * 2;
},
perimeter: () => 2 * Math.PI * this.radius,
};
shape.diameter();
shape.perimeter();
20
and 62.83185307179586
20
and NaN
20
and 63
NaN
and 63
Chú ý rằng giá trị diameter
là một hàm thông thường, cò...
middle
Gợi ý câu hỏi phỏng vấn
Chưa có bình luận nào