From 53ae1bb015321b70331296f411f570068d349f45 Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Fri, 8 Nov 2019 23:50:31 +0300 Subject: [PATCH] Fix link --- 1-js/02-first-steps/17-javascript-specials/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/17-javascript-specials/article.md b/1-js/02-first-steps/17-javascript-specials/article.md index b246a841..cfc043d7 100644 --- a/1-js/02-first-steps/17-javascript-specials/article.md +++ b/1-js/02-first-steps/17-javascript-specials/article.md @@ -272,7 +272,7 @@ We covered three ways to create a function in JavaScript: - Parameters can have default values: `function sum(a = 1, b = 2) {...}`. - Functions always return something. If there's no `return` statement, then the result is `undefined`. -Details: see , . +Details: see , . ## More to come