React Practice Course
- React is decrative means you have no need to doing vanilla javascript kind of stuff
ex. const para = document.createElement('p');
para.textContent = 'This is Also Visible';
document.getElementById('root').append(paar);
Git and GitHub Intro |
---|
Git Imporant command |
---|
No | ES5 | ES6 |
---|---|---|
1 | Supporting in basically all browser including old IE | Supported in modern browser can be transpiled to ES5 |
2 | Only had var, not let or const | Many New Features that help to write the cleaner and faster code |
3 | Syntax are same as like ES6 but quite some missing Features | still under active development and big step forward |
Picking the right architecture = Picking the right battles + Managing trade-offs