A code repo for javascript learning (from chai and code)
Create an account on github. On your local repo perform the below steps:
git init
git remote add origin https://github.com/LearnerByChoice/learning-js.git
git add *<filesNames>*
git commit -m "Initial Commit"
git push --set-upstream origin test_setup
ssh-keygen -t ed25519 -C "ctrlaltelite378@gmail.com"
cat ~/.ssh/id_ed25519.pub
Enter this SSH key in Github settings. Now if you proceed to push the code, an authentication step will be required on the browser.
- use let, const, var
- const cannot be re-assigned
- if only variable is declared, its value is undefined
- Updated README
- Github settings (Auto delete enabled, fixed repo name, )
