Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Sandeep Krishnan
Sandeep Krishnan
9,730 Points

Whats the difference between Object Oriented Javascript and Javascript ? Are they mutually exclusive ?

Is this absolutely necessary learn OOJS to code become a good JS programmer ? I am planning to learn Node.JS and React JS ( yes I know its just a DOM manipulator).

2 Answers

Kevin Korte
Kevin Korte
28,149 Points

Mutually exclusive - no Important - maybe

OOJS is still just JS, it's just a concept of structuring and organizing your code into a way that makes it readable, maintainable, and less cluttered. That in and of itself can make it important, especially as projects grow in size and complexity. But JS is still just JS

And React is so much more than a dom manipulator, that's jquery. React is a full featured template and component rendering engine.

Sandeep Krishnan
Sandeep Krishnan
9,730 Points

GOt it ! In that sense Jquery is closer to OOJS. Can I then presumably infer that jQuery and OOJS are two ways to curate JS data in large project where several lines of JS code will simply make the process more cumbersom