Algorithms in Javscript, including Q Learning in js.
-
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!
-
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.
-
Function should do one thing. They should do it well.