Skip to content

Latest commit

 

History

History

0x02-ES6_classes

img

es6-yeah

About

Classes in JavaScript were introduced in ECMAScript 2015 (ES6) as a new way to define objects and work with object-oriented programming concepts. They provide syntactic sugar and a more structured approach for creating reusable blueprints, defining properties, and implementing methods. In this project, we will explore classes indepth

Resources

  1. Classes
  2. Metaprogramming

Learning objectives

At the end of this project, you are expected to be able to explain to anyone without the help of Google:

  • How to define a Class
  • How to add methods to a class
  • Why and how to add a static method to a class
  • How to extend a class from another
  • Metaprogramming and symbols