How can we create an instance from Bike with a set speed property?
Bike
speed
var bike = new Bike("15 km/h");
With class inheritance, we can. Bike might not have a constructor, but it can use the constructor of Vehicle that sets speed.
Vehicle