Вывод в консоль №38
Условие задачи
Определить что будет выведено в консоль
javascript const shape = {
radius: 10,
diameter() {
return this.radius * 2;
},
perimeter: () => 2 * Math.PI * this.radius
};
console.log(shape.diameter());
console.log(shape.perimeter());