Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.28 KB

README.md

File metadata and controls

31 lines (23 loc) · 1.28 KB

Just-To-Learn

This Repo will be for random test scripts & learning stuff

Useful Links:

Node.js:

  1. Net Ninja tutorial (episode 7 of 37) - https://www.youtube.com/watch?v=9UaZtgB5tQI
  2. Node version manager (nvm-windows) - https://github.com/coreybutler/nvm-windows

Discord.js:

  1. Main Docs - https://discord.js.org/#/
  2. My Apps (on discordapp.com) - https://discordapp.com/developers/applications/me
  3. Nice "Getting Started" guide - https://anidiots.guide/

React.js:

  1. create-react-app: https://github.com/facebookincubator/create-react-app
  2. Introducing JSX: https://reactjs.org/docs/introducing-jsx.html
  3. Rendering Elements: https://reactjs.org/docs/rendering-elements.html
  4. Components & Props: https://reactjs.org/docs/components-and-props.html
  5. Listenable Events: https://reactjs.org/docs/events.html

Other:

  1. A file with the name Aux.js will not be handled well in Windows. Don't do it!

Useful js tricks:

ES7:

  1. To safely copy an object (including arrays), use let newObj = {...oldObj} / [...oldArr] - this way, newObj is not tied to oldObj at all.