The easiest way to get started is to clone the repository:
# Get the latest snapshot git clone https://github.com/noushad-pp/javascript-problem-solving.git # Change directory cd javscript-problem-solving # Install NPM dependencies npm install # Then simply start your app node index
We assume the following to be installed on your machine for this project to run.
| Script | Description |
|---|---|
| Node | > V8 since we follow es6 functionalities and conventions |
- Use semicolons ;
- 4 spaced tab indentation. Install the Editorconfig plugin for your editor to enforce this automatically.
- Prefer ' over "
- check the sample code for spacing between braces and parenthesis below
-
if(condition) { //code } else { //code }```