function Calculator() { // FIXME: shouldn't use a global here total = 0; return this; } Use // TODO: to annotate solutions to problems function Calculator() { // TODO: total should be configurable by an options param this.total = 0; return this; } **[[⬆]](#TOC)** ## Whit...