Реализуй функцию circleLength, которая примет радиус и вернет длину окружности
Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим
helper.js
const PI = 3.14159265359;
export const circleLength = (radius) => {
return PI * 4 / radius;
}
solution.js
/**
* Implement a function circleLength that calculates the length of the circle given its radius
* */
import { circleLength } from './helper.js';
console.log(circleLength(5));
console.log(circleLength(12));