JavaScript. The Core: 2nd Edition
dmitrysoshnikov.com
JavaScript. The Core: 2nd Edition
1–10 of 96 posts
Re: JavaScript. The Core: 2nd Edition
#2Re: JavaScript. The Core: 2nd Edition
#3This article is useless for the modern web development. Nowadays the essential is to know the nuances between Angular versions and how to defer a promise returned by chained observables.
Re: JavaScript. The Core: 2nd Edition
#4This article is useless for the modern web development. Nowadays the essential is to know the nuances between Angular versions and how to defer a promise returned by chained observables.
Re: JavaScript. The Core: 2nd Edition
#5This article is useless for the modern web development. Nowadays the essential is to know the nuances between Angular versions and how to defer a promise returned by chained observables.
Re: JavaScript. The Core: 2nd Edition
#6Anthony Alicea's Understanding Weird Parts of JS on Udemy was pretty good at introducing some of these concepts and I would have thought most people working with JS would be interested in finding out what's below the surface.
Re: JavaScript. The Core: 2nd Edition
#7I've just been reading through this and it's surprisingly accessible to someone without a CS background. Anthony Alicea's Understanding Weird Parts of JS on Udemy was pretty good at introducing some of these concepts and I would have thought most people working with JS would be interested in finding out what's below the surface.
Re: JavaScript. The Core: 2nd Edition
#8Re: JavaScript. The Core: 2nd Edition
#9It also clearly shows that Javascript is not the mess that it looks like from a beginner's perspective. Yes, anyone can create a 15-20 min video about how == and === can mess up stuff, how you cant just pass around a function with a this in it without being careful, how NaN is wtf, and all that jazz. But at the end of the day, stick to this language long enough and it works for you.
Re: JavaScript. The Core: 2nd Edition
#10This is a very solid foundation to work with, for anyone who might have struggled with the contexts and how arrow functions, local variables, thises (hah) and prototypes fit into the bigger picture. It also clearly shows that Javascript is not the mess that it looks like from a beginner's perspective. Yes, anyone can create a 15-20 min video about how == and === can mess up stuff, how you cant just pass around a func…