(model, color, year, country)
| 1 | function Vehicle(model, color, year, country) { |
| 2 | this.model = model; |
| 3 | this.color = color; |
| 4 | this.year = year; |
| 5 | this.country = country; |
| 6 | } |
| 7 | |
| 8 | var car = Vehicle("Honda", "white", "2010", "UK"); |
| 9 | console.log(car); |
no outgoing calls
no test coverage detected