function Circle(x, y, radius, color, startDegrees, endDegrees, counterClockwise)
{
}
Если не передать нужное число параметров, то незадействованые станут undefined.function Circle(options)
{
}
new Circle({ radius: 10, x: 40, y: 30 });
new Circle radius: 10, x: 40, y: 30