add description

This commit is contained in:
Mehmood Ahmad
2018-06-18 03:30:08 +05:00
committed by Mrugesh Mohapatra
parent c214db688e
commit 2f986ab412

View File

@ -5,6 +5,10 @@ superBlock: JavaScript Algorithms and Data Structures
--- ---
## Introduction to Basic Algorithm Scripting ## Introduction to Basic Algorithm Scripting
This introduction is a stub Algorithms is the process used to solve problems, this process first include understanding the problem and then solve it with coding. We solve problems by dividing them in to many chunks and then solving each chunk one by one. For example if we have to build a calculator then instead of thinking about the problem as a whole we first consider how to take inputs, then consider each arithematic operation one by one and then finally we will display the results.
Help us make it real on [GitHub](https://github.com/freeCodeCamp/learn/tree/master/src/introductions). 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.
Help us to improve the description on [GitHub](https://github.com/freeCodeCamp/learn/tree/master/src/introductions).