From a967ad0cf950a29aff85b9f8e6a4566afa61b3cf Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sat, 2 Nov 2019 21:30:26 +0300 Subject: [PATCH] closes #1560 --- .../05-array-methods/6-calculator-extendable/solution.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/1-js/05-data-types/05-array-methods/6-calculator-extendable/solution.md b/1-js/05-data-types/05-array-methods/6-calculator-extendable/solution.md index 982d3f9e..ebe0714c 100644 --- a/1-js/05-data-types/05-array-methods/6-calculator-extendable/solution.md +++ b/1-js/05-data-types/05-array-methods/6-calculator-extendable/solution.md @@ -1,5 +1,3 @@ - Please note how methods are stored. They are simply added to `this.methods` property. - All tests and numeric conversions are done in the `calculate` method. In future it may be extended to support more complex expressions. - -[js src="_js/solution.js"]