12 - Class Features

๐Ÿšง Properties, Methods, and Constructors ๐Ÿ—๏ธ

What are we learning?

In this lesson we will:

Recall ๐Ÿ“–

Abstract Data Types

Classes

Class Diagram ๐Ÿ’ 

Declaring a Class ๐Ÿ’ป

// A Playing Card
class PlayingCard {

ย ย value;

ย ย name;

ย ย suit;

ย ย colour;

ย ย is_face = false;

}

Instantiation ๐Ÿ†•

let card = new PlayingCard();

card.name = "Queen";
card.is_face = true;

The Lesson ๐Ÿ“„

Properties, Methods, and Constructors - Oh My!

Giving our objects functionality ๐Ÿ‘ˆ click for the repo

๐Ÿฟ๏ธ