Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 1.5 KB

javascript.md

File metadata and controls

19 lines (15 loc) · 1.5 KB

Home

Javascript Resources

Useful resources related to plain JS.

Name Link What is it? Tip from
Eloquent JavaScript https://eloquentjavascript.net/ A good JS reference. Online book. Dan Sofer
JS Regex https://flaviocopes.com/javascript-regular-expressions/ A beginners guide to regex Christine FAC17
Regex101 https://regex101.com/ A testable regex site Oliver FAC10
ECMAScript 6 https://es6-features.org/ Overview & Comparison of ECMAScript 6 features Pat
var, let and const: whats the diff? https://dev.to/sarah_chima/var-let-and-const--whats-the-difference-69e a rundown on the different uses of variable declarations Georgia FAC17
Understand the event loop https://bit.ly/2WK2PZ2 A good video and test site to help understand the event loop Bobby
First Class Functions https://oliverjam.es/blog/first-class-functions/ Rundown of first class functions on Oliver's blog (whole site is good for tips!) Oliver FAC10
Medium: Learn Map https://codeburst.io/learn-understand-javascripts-map-function-ffc059264783 About using map array method Reuben FAC17
Medium: Learn Reduce https://codeburst.io/learn-understand-javascripts-reduce-function-b2b0406efbdc About using reduce array method Reuben Fac17
Medium: Learn Filter https://codeburst.io/learn-understand-javascripts-filter-function-bde87bce206 About using filter array method Reuben FAC17