xxxxxxxxxx
25
class Cookie {
// The constructor is a special function that
// creates a new object. This constructor takes
// two arguments that specify how sweet the cookie
// is and whether it has icing or not.
constructor(sweetness, icing){
// Here, we are storing some data inside it
// The 'this' keyword refers to the new object
this.sweetness = sweetness;
this.hasIcing = icing;
this.isBaked = false;
}
// The class also defines functions for the object
bake(){
// Use 'this.' to access/update data of the object
this.isBaked = true;
}
// The functions of the object can also return values.
// This function returns the sweetness of the cookie.
taste(){
return this.sweetness;
}
}