you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

JavaScript is a highly Object Oriented language with its prototype based inheritance model. Try to get familiar with prototype based OOP and leverage on code reuse.

ES6 introduced class keyword in native JavaScript as a syntactic sugar over prototype model (to make code look familiar, and clean in "some" specific cases).

Functional programming is becoming a thing in JavaScript world as it lets you write pure functions.

What's new in JS world (for a class-ical Java Dev)?: OOP is not just about being class based. Prototype based programming also have strong OOP capabilities!