* @param {number} steps * @return {string}
(steps)
| 19 | * @return {string} |
| 20 | */ |
| 21 | back(steps) { |
| 22 | this.current = Math.max(this.current - steps, 0); |
| 23 | return this.history[this.current]; |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * @param {number} steps |
no outgoing calls
no test coverage detected