- Are jQuery and React both libraries or one is framework?
- Apart from understanding the old code when working on old project files, will I encounter jQuery that much? I understand developers now prefer either plain JavaScript or React etc. over jQuery. Is that true?
- Some say learning jQuery has negative effect on your JavaScript learning capabilities - true?
- jQuery is a huge library and makes app slower, than say plain JS or React - is that true?
- No more queries for now, but will add once I have, is that okay?
{"lastUpload":"2020-03-15T16:51:05.327Z","extensionVersion":"v3.4.3"} |
Grokking - Most frequent word https://repl.it/@waituk/most-frequent-word-analyzer-challenge
Making student reports https://repl.it/@waituk/Make-student-reports-drill-1
Enroll in summer school https://repl.it/@waituk/Enroll-in-summer-school-drill-1
Find by id https://repl.it/@waituk/find-by-id-drill
Validate object keys
Object Creator https://repl.it/@waituk/Object-creator-drill
Object Updater https://repl.it/@waituk/Object-updater-drill
Self-reference https://repl.it/@waituk/Self-reference-drill
Deleting keys
1. What is scope? Your explanation should include the idea of global vs. block scope. A scope is locale accessible to a variable based on where its declared. There can only be two scopes, global or local. A local scope is the one where variable is declared within a function, whereas a global scope if for varaibles declared anywhere else outside of a function. Global scopes can be mutated from anywhere in the code file or files, whereas the local scoped variables can only be changed within the function and then it will disappear after the function is invoked, without making any changes to the outside world. Its always recommended to create local scoped variables for reliable code, unless in exceptional edge cases where global scoped variable is a must.
Why are global variables avoided? It allows for mutation of variables in unknown places, making the code prone to unintended results, and hence making
max and min (without sort) https://repl.it/@waituk/min-and-max-without-sort-drill
Compute the average https://repl.it/@waituk/average-drill
Array basics drills
Creating arrays https://repl.it/@waituk/Creating-arrays-drill
Adding array items https://repl.it/@waituk/Adding-array-items-drills
Accessing array items https://repl.it/@waituk/Accessing-array-items-drill
Traffic Light https://repl.it/@waituk/Traffic-lights-drill
Error alert https://repl.it/@waituk/Error-alert-drill
Area of a rectangle https://repl.it/@waituk/area-of-a-rectangle-drill
Temperature conversion https://repl.it/@waituk/temperature-conversion-drill
Is Divisible https://repl.it/@waituk/Is-divisible-drill