• + 0 comments

    const PI = Math.PI

        let area = PI * Math.pow(inputString,2)
        console.log(area)
    
      // Print the perimeter of the circle:
    
        const  perimeters = 2 * PI * inputString
        console.log(perimeters)