From 7442adf51636cb2b094fa11e2b362404f0734bf2 Mon Sep 17 00:00:00 2001 From: Mehmood Ahmad Date: Mon, 18 Jun 2018 03:36:13 +0500 Subject: [PATCH] update description --- .../basic-algorithm-scripting/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/learn/src/introductions/javascript-algorithms-and-data-structures/basic-algorithm-scripting/index.md b/packages/learn/src/introductions/javascript-algorithms-and-data-structures/basic-algorithm-scripting/index.md index 47cf47ccbb..2cdf47375e 100644 --- a/packages/learn/src/introductions/javascript-algorithms-and-data-structures/basic-algorithm-scripting/index.md +++ b/packages/learn/src/introductions/javascript-algorithms-and-data-structures/basic-algorithm-scripting/index.md @@ -9,6 +9,7 @@ Algorithms is the process used to solve problems, this process first include und In this lesson we will learn to solve the very basic algorithm problems using JavaScript which will help you to improve your problem solving skills and in future it will help you to jump into the complex problems. First part is always to fully understand the problem and then after that solve each chunk one by one. -**Tip: ** Use `console.log()` to debug whenever you feel stuck in the process of solving the problem. +#### Note +Use `console.log()` to debug whenever you feel stuck in the process of solving the problem. Help us to improve the description on [GitHub](https://github.com/freeCodeCamp/learn/tree/master/src/introductions).