- http://stackoverflow.com/questions/804115 (
rebasevsmerge). - https://www.atlassian.com/git/tutorials/merging-vs-rebasing (
rebasevsmerge) - https://www.atlassian.com/git/tutorials/undoing-changes/ (
resetvscheckoutvsrevert) - http://stackoverflow.com/questions/2221658 (HEAD^ vs HEAD~) (See
git rev-parse) - http://stackoverflow.com/questions/292357 (
pullvsfetch) - http://stackoverflow.com/questions/39651 (
stashvsbranch) - http://stackoverflow.com/questions/8358035 (
resetvscheckoutvsrevert)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .grid-container { | |
| width: 85vw; | |
| margin: 50px auto; | |
| display: grid; | |
| justify-content: center; | |
| grid-template-columns: auto auto auto auto auto; | |
| grid-gap: 50px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .card-container { | |
| cursor: pointer; | |
| -moz-osx-font-smoothing: grayscale; | |
| backface-visibility: hidden; | |
| transform: translateZ(0); | |
| transition: transform 0.25s ease-out; | |
| } | |
| .card-container:hover { | |
| transform: scale(1.05); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Objects | |
| 2. Funtions | |
| 3. Prototypes | |
| 4. Arrays | |
| 5. Functions | |
| 5.1. Arrow Functions | |
| 5.2. Generator Functions | |
| 6. Closures | |
| 7. Callbacks | |
| 8. Promises |