class Car{

constructor(model,color){

this.model = model;

this.color = color;

}

}

Create an account or to write a comment.