Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best book for learning object oriented javascript? [closed]

Tags:

javascript

I'm a pro when it comes to HTML/CSS, and can use jQuery pretty well to move things around on my sites, but I need a good book for a NON PROGRAMMING person to learn OO JS. I just can't grasp it. I need a good book for learning! Thanks :)

like image 680
Steven Davis Avatar asked Dec 25 '10 07:12

Steven Davis


People also ask

Can we learn JavaScript with a book?

Head First JavaScript The book is excellent for anyone who wants to learn JavaScript, a must-read for any JavaScript beginner. You will learn all fundamental concepts of JavaScript very quickly, like data types, functions, how to write JavaScript code, how to run them, and how to test them.

Can I learn OOP in JavaScript?

JavaScript is not a class-based object-oriented language. But it still has ways of using object oriented programming (OOP). In this tutorial, I'll explain OOP and show you how to use it. The most popular model of OOP is class-based.


1 Answers

If you are completely new to programming and need to learn JavaScript from the ground up, have a go at the freely available Eloquent JavaScript.

Object-oriented Programming chapter from Eloquent JavaScript is a good read. I also strongly recommend reading chapters 3-5 from JavaScript: The Good Parts to understand JavaScript Objects, Functions, Inheritance. The best I have read on the topic till now.

like image 160
dheerosaur Avatar answered Sep 21 '22 06:09

dheerosaur