Asabeneh / 30-Days-Of-JavaScript

30 days of JavaScript programming challenge is a step-by-step guide to learn JavaScript programming language in 30 days. This challenge may take more than 100 days, please just follow your own pace. These videos may help too: https://www.youtube.com/channel/UC7PNRuno1rzYPb1xLa4yktw
42.74k stars 9.92k forks source link

Day 7 - "Function with many parameters" error #918

Open CrativeMan opened 7 months ago

CrativeMan commented 7 months ago

Function with many parameters

On day 7 in the functions with many parameters part. There is this function which i think shouldnt be there

    const areaOfCircle = (radius) => {
      let area = Math.PI * radius * radius;
      return area;
    }
console.log(areaOfCircle(10))
123saketh commented 5 months ago

I would like to work on the fix, Could you please assign the issue to me.