From 73550e58ac46f4af3b18ad46c650dcd8c27e1b92 Mon Sep 17 00:00:00 2001 From: Milo Silva <56648742+Mr0cket@users.noreply.github.com> Date: Sun, 27 Sep 2020 11:08:51 +0200 Subject: [PATCH] Update 'properties' to 'property values' The task asks to multiply numeric object 'properties', however the term 'object properties' include both the 'property keys' of the object as well as the 'property values' of the object. It is clear the intention of the task is to change property values. This change improves clarity of the task description. --- 1-js/04-object-basics/01-object/8-multiply-numeric/task.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/04-object-basics/01-object/8-multiply-numeric/task.md b/1-js/04-object-basics/01-object/8-multiply-numeric/task.md index 33eb8922..6878ca08 100644 --- a/1-js/04-object-basics/01-object/8-multiply-numeric/task.md +++ b/1-js/04-object-basics/01-object/8-multiply-numeric/task.md @@ -2,9 +2,9 @@ importance: 3 --- -# Multiply numeric properties by 2 +# Multiply numeric property values by 2 -Create a function `multiplyNumeric(obj)` that multiplies all numeric properties of `obj` by `2`. +Create a function `multiplyNumeric(obj)` that multiplies all numeric property values of `obj` by `2`. For instance: