Solutions of Basic Algorithms Scripting (Free Code Camp)
Contributing
-
Create your branch:
git checkout -b my-new-feature
-
Commit your changes:
git commit -m 'Add some feature'
-
Push to the branch:
git push origin my-new-feature
-
Send a Pull Request
-
Enjoy!
Coding standards
-
Variables name should be in camelCase
-
Always put spaces around operators ( = + - * / ), and after commas
-
Always use 1 tab space for indentation of code blocks
-
Always end a simple statement with a semicolon.
-
Put the opening bracket at the end of the first line.
-
Use one space before the opening bracket.
-
Put the closing bracket on a new line, without leading spaces.
-
Use lower case file names without any special characters or spaces.