- 🎉 Initial commit
- ⏪ Reverting changes
- 🔀 Merging branches
- 🙈 Adding or updating a .gitignore file
| ----Branch---- | |
| git checkout - | |
| moves to the previous branch where you were before. | |
| git diff master..my-branch | |
| see the difference between branches |
- CSS - http://overapi.com/css
- CSS Flexbox - https://yoksel.github.io/flex-cheatsheet
- CSS Grid - https://alialaa.github.io/css-grid-cheat-sheet
- CSS Reference - https://tympanus.net/codrops/css_reference
- HTML Elements- https://meiert.com/en/indices/html-elements
- JavaScript - http://overapi.com/javascript
- jQuery - https://oscarotero.com/jquery
- Git - https://www.git-tower.com/blog/content/posts/54-git-cheat-sheet/git-cheat-sheet-large01.png
- RegEx - https://www.debuggex.com/cheatsheet/regex/javascript
If you haven’t worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:
- We define variables with
letandconststatements. For the purposes of the React documentation, you can consider them equivalent tovar. - We use the
classkeyword to define JavaScript classes. There are two things worth remembering about them. Firstly, unlike with objects, you don't need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value ofthisin a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/Jav
This content moved here: https://exploringjs.com/impatient-js/ch_arrays.html#quickref-arrays
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
Below are many examples of function hoisting behavior in JavaScript. Ones marked as works successfuly print 'hi!' without errors.
To play around with these examples (recommended) clone them with git and execute them with e.g. node a.js
(I may be using incorrect terms below, please forgive me)