md`## Task 9-2
- 9-2-2. \`if(){return } else{ return }\`
- 9-2-4.
- \`d3.select("p)\` rather than \`d3.select(p)\`
- \`.on("click", ...)\` rather than \`.on("Click", ...)\`
- \`xScale.domain([0, d3.max(dataset, function(d){ return ...}])\`. Be sure to add \`dataset\`.
- 9-2-5.
- It should be \`d3.select(this)\`, rather than \`svg.select(this)\`.
- "start" can be placed either before or after \`duration()\` and "end" should be placed at the end of the circle-updating code.
- 9-2-6. Only one transition can be active for a given element at any given time.
`