#5 now

class Car{
constructor(model,color){
this.model = model;
this.color = color;
}
}
2 Comments
Create an account or Login to write a comment.
class Car{
constructor(model,color){
this.model = model;
this.color = color;
}
}
Create an account or Login to write a comment.