Fixed dead link

This commit is contained in:
Enes Gönültaş
2016-04-05 11:16:48 +03:00
parent 96df9bfcd7
commit 43623f3a7a

View File

@ -2423,7 +2423,7 @@
"id": "56533eb9ac21ba0edf2244c3", "id": "56533eb9ac21ba0edf2244c3",
"title": "Assignment with a Returned Value", "title": "Assignment with a Returned Value",
"description": [ "description": [
"If you'll recall from our discussion of <a href=\"waypoint-storing-values-with-the-equal-operator\" target=\"_blank\">Storing Values with the Equal Operator</a>, 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 <a href=\"storing-values-with-the-assignment-operator\" target=\"_blank\">Storing Values with the Assignment Operator</a>, 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 <code>sum</code> which adds two numbers together, then: ", "Assume we have pre-defined a function <code>sum</code> which adds two numbers together, then: ",
"<code>ourSum = sum(5, 12);</code>", "<code>ourSum = sum(5, 12);</code>",
"will call <code>sum</code> function, which returns a value of <code>17</code> and assigns it to <code>ourSum</code> variable.", "will call <code>sum</code> function, which returns a value of <code>17</code> and assigns it to <code>ourSum</code> variable.",