From 250d92749b5cc592d8caf27fc1b112cb6c5d601c Mon Sep 17 00:00:00 2001 From: Abhisek Pattnaik Date: Sat, 26 Dec 2015 07:31:34 +0530 Subject: [PATCH] Assignment with a Returned Value --- .../basic-javascript.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index 2e8c897553..60a49a4b6c 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -2115,12 +2115,12 @@ "id": "56533eb9ac21ba0edf2244c3", "title": "Assignment with a Returned Value", "description": [ - "If you'll recall from our discussion of Storing Values with the Equal Operator, everything to the right of the equal sign is resolved before the value is assigned. This means we can take the return value of a function and assign it to a variable.", + "If you'll recall from our discussion of Storing Values with the Equal Operator, everything to the right of the equal sign is resolved before the value is assigned. This means we can take the return value of a function and assign it to a variable.", "Assume we have pre-defined a function sum which adds two numbers together, then: ", "var ourSum = sum(5, 12);", - "will call sum, which returns a value of 17 and assigns it to ourSum.", + "will call sum function, which returns a value of 17 and assigns it to ourSum variable.", "

Instructions

", - "Call process with an argument of 7 and assign it's return valueto the variable processed." + "Call process function with an argument of 7 and assign it's return value to the variable processed." ], "releasedOn": "11/27/2015", "tests": [ @@ -2143,7 +2143,7 @@ "" ], "solutions": [ - "" + "processed = process(7);" ], "type": "waypoint", "challengeType": "1",