From 95d5ccac8a89566b03a889f05fb40ad555f05124 Mon Sep 17 00:00:00 2001 From: krisgesling Date: Mon, 4 Jan 2016 08:05:26 +0000 Subject: [PATCH] Simplify language of waypoint description --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index e95366e762..bdb0af0ed9 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -1851,7 +1851,7 @@ "id": "56533eb9ac21ba0edf2244bd", "title": "Passing Values to Functions with Arguments", "description": [ - "Functions can take input with parameters. Parameters are local variables that take on the value of the arguments which are passed into the function.", + "Parameters are variables that act as placeholders for the values that are to be input to a function when it is called. When a function is defined, it is typically defined along with one or more parameters. The actual values that are input (or \"passed\") into a function when it is called are known as arguments.", "Here is a function with two parameters, param1 and param2:", "
function testFun(param1, param2) {
console.log(param1, param2);
}
", "Then we can call testFun:",