
Kyle Simpson
JavaScript. Enough said.
1,378 followers
113 following
Kyle Simpson is a web-oriented software engineer, widely acclaimed for his "You Don't Know JS" book series and nearly 1M hours viewed of his online courses. Kyle's superpower is asking better question…
(more)
Profile
9 Answers
0 Questions
0 Posts
1.4K Followers
Following
Edits
Activity
Profile
What is prototypal inheritance in JavaScript?
Please see this answer: Kyle Simpson's answer to What is the meaning of "Inheritance" in Javascript?
What is the meaning of "Inheritance" in Javascript?
Inheritance in JavaScript describes the notion that one object’s methods/properties are available to be used via another object. The way this happens is that the second object is connected to the first via the `[[Prototype]]` system. When you try to use the method/property on the second object, even…
(more)
Can I learn Javascript from basic to advanced in 6 months using the book "JavaScript: The Definitive Guide, 6th Edition", or is there a better way?
That’s a decent book, but not what I’d recommend for learning from basic. I’m totally biased here, but I think you’d be better served reading my “You Don’t Know JS” book series (6 books), which you can read online for free, or purchase from any book store as published through O’Reilly. My books are d…
(more)