From 7a14b004cf7142acc754d0574636ba58bcc52127 Mon Sep 17 00:00:00 2001 From: Mau Di Bert Date: Thu, 31 Jan 2019 06:39:14 -0300 Subject: [PATCH] Ordering solution --- .../05-array-methods/6-calculator-extendable/task.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/1-js/05-data-types/05-array-methods/6-calculator-extendable/task.md b/1-js/05-data-types/05-array-methods/6-calculator-extendable/task.md index cc5453ce..6bdfe479 100644 --- a/1-js/05-data-types/05-array-methods/6-calculator-extendable/task.md +++ b/1-js/05-data-types/05-array-methods/6-calculator-extendable/task.md @@ -34,3 +34,6 @@ The task consists of two parts. - No brackets or complex expressions in this task. - The numbers and the operator are delimited with exactly one space. - There may be error handling if you'd like to add it. +- Please note how methods are stored. They are simply added to the internal object. +- All tests and numeric conversions are done in the `calculate` method. In future it may be extended to support more complex expressions. +