en.javascript.info/1-js/8-oop/5-functional-inheritance/1-coffeemachine-fix-run/task.md
2014-12-27 20:29:54 +03:00

21 lines
632 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Запускать только при включённой кофеварке
[importance 5]
В коде `CoffeeMachine` сделайте так, чтобы метод `run` выводил ошибку, если кофеварка выключена.
В итоге должен работать такой код:
```js
var coffeeMachine = new CoffeeMachine(10000);
coffeeMachine.run(); // ошибка, кофеварка выключена!
```
А вот так -- всё в порядке:
```js
var coffeeMachine = new CoffeeMachine(10000);
coffeeMachine.enable();
coffeeMachine.run(); // ...Кофе готов!
```