Bundle Variables Together
Create a class with grouped data fields (attributes).
We'll cover the following...
Sometimes, a single variable can’t represent everything you need. In this lesson, you’ll use classes to bundle variables, like a player’s name, age, and score.
Goal
You’ll aim to:
Create simple custom classes.
Group related data into fields.
Access and print object fields. ...