- Overview
- Transcript
3.1 Conclusion
Despite the popularity of Vue, React, and similar frameworks, vanilla object-oriented JavaScript is still a useful and productive way to write web apps. It may require a little extra work, but you end up with an app that will work forever.
My name is Jeremy McPeak. Thank you for watching!
1.Introduction2 lessons, 06:43
1.1Introduction01:23
1.2Setup and App Walkthrough05:20
2.Writing Object-Oriented JavaScript4 lessons, 39:53
2.1Retrieving Feeds14:10
2.2Using Custom Events and Applying State09:22
2.3Code Reuse, Not Code Duplication13:26
2.4Displaying the Article Content02:55
3.Conclusion1 lesson, 01:10
3.1Conclusion01:10
3.1 Conclusion
Despite the popularity of Vue, React, and similar frameworks, object-oriented JavaScript is still a useful and productive way to write web applications. It may require a little extra work but at the end of the day you end up with an application that will work forever. Before I leave you, there are some concepts I want you to make note of. First, be mindful of your application's needs. If you just need a single object then don't write a class, just write a normal single object, just like we did for our application object. Second, classes are really only useful when you want to create multiple objects of the same type. The containers and the items in our application are perfect examples of this and they're also perfect examples of code reuse. We were able to reuse a lot of code for different objects by using subclasses. Thank you so much for watching this course. Please feel free to contact me through Twitter or the Tuts+ forums if you have any questions. From all of us here at Tuts+, thank you and I will see you next time.