Skip to content

Instantly share code, notes, and snippets.

View ivantm's full-sized avatar

Ivan Miskovic ivantm

View GitHub Profile
@ivantm
ivantm / fed-technical-concepts
Last active August 29, 2015 14:23
Technical Concepts for a Good FED
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