Once we have a selection, we can apply various operators to the selected elements. For example, we might change the fill color using style, and the radius and the y-position using attr:

circle.style("fill", "steelblue");
  circle.attr("cy", 90);
  circle.attr("r", 30);