Contenido del Curso
Object-Oriented Programming in JavaScript
Object-Oriented Programming in JavaScript
Class Attributes
Attributes are some variables inside the class that describe each object. Let’s demonstrate it with two classes – Rectangle
and Student
.
We can represent Rectangle
by its height and width. Add these Attributes to the class definition:
class Rectangle{ height; width; }
If you need to describe student in some way, you can create class Student
with attributes like, for example, name and university.
class Student{ name; university; }
Tarea
Add more attributes to the class Student
: age
and gpa
variables.
¡Gracias por tus comentarios!
Class Attributes
Attributes are some variables inside the class that describe each object. Let’s demonstrate it with two classes – Rectangle
and Student
.
We can represent Rectangle
by its height and width. Add these Attributes to the class definition:
class Rectangle{ height; width; }
If you need to describe student in some way, you can create class Student
with attributes like, for example, name and university.
class Student{ name; university; }
Tarea
Add more attributes to the class Student
: age
and gpa
variables.
¡Gracias por tus comentarios!
Class Attributes
Attributes are some variables inside the class that describe each object. Let’s demonstrate it with two classes – Rectangle
and Student
.
We can represent Rectangle
by its height and width. Add these Attributes to the class definition:
class Rectangle{ height; width; }
If you need to describe student in some way, you can create class Student
with attributes like, for example, name and university.
class Student{ name; university; }
Tarea
Add more attributes to the class Student
: age
and gpa
variables.
¡Gracias por tus comentarios!
Attributes are some variables inside the class that describe each object. Let’s demonstrate it with two classes – Rectangle
and Student
.
We can represent Rectangle
by its height and width. Add these Attributes to the class definition:
class Rectangle{ height; width; }
If you need to describe student in some way, you can create class Student
with attributes like, for example, name and university.
class Student{ name; university; }
Tarea
Add more attributes to the class Student
: age
and gpa
variables.