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
This is a list of technical concepts that a good Front-End Developer would know | |
* Language Basics | |
* syntax | |
* types (what JavaScript's basic types are; how to check if a value is a particular type) | |
* equality (the concept of truthy/falsy; the difference between `==` and `===`) | |
* objects and arrays (when to use one over the other) | |
* Debugging effectively with developer tools | |
* Breakpoints | |
* Profiling |