Circle Class in OOP in JavaScript
Make a class Circle that will describe a circle.
Pass the radius of the circle to the constructor parameter. Write it to a private property.
Make a method that will return the area of a circle.
Make a method that will return the circumference of a circle.