Tag: reactjs
React – What to add & Not to add as Dependencies
In the previous lecture, we explored useEffect() dependencies. You learned, that you should add “everything” you use in the effect function as a dependency – i.e. all state…
Next-Gen JavaScript
let & const Read more about let : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let Read more about const : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const let and const basically, replace var . You use let instead of var and const instead of var if you plan on never re-assigning…