How can we create an instance from Bike with a set speed property?

var bike = new Bike("15 km/h");We can't, because Bike has no constructor with that property

With class inheritance, we can. Bike might not have a constructor, but it can use the constructor of Vehicle that sets speed.