From e01b6f72ccefbcc80d9877f6de2286f6419df9d6 Mon Sep 17 00:00:00 2001 From: Brian Regehr <49923155+CitrineDragon@users.noreply.github.com> Date: Wed, 30 Mar 2022 15:08:19 -0700 Subject: [PATCH] Update task.md The first test fails if the properties aren't named a & b. Added a note for users to help resolve this. --- 1-js/04-object-basics/04-object-methods/7-calculator/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/04-object-methods/7-calculator/task.md b/1-js/04-object-basics/04-object-methods/7-calculator/task.md index aa22608ece..90c60d1771 100644 --- a/1-js/04-object-basics/04-object-methods/7-calculator/task.md +++ b/1-js/04-object-basics/04-object-methods/7-calculator/task.md @@ -6,7 +6,7 @@ importance: 5 Create an object `calculator` with three methods: -- `read()` prompts for two values and saves them as object properties. +- `read()` prompts for two values and saves them as object properties. (Note: Use property names of a & b respectively) - `sum()` returns the sum of saved values. - `mul()` multiplies saved values and returns the result.