var MyConstructor = function(name, value, speed, time, something_else, another_argument, yet_another_argument, ...) {}
var my_instance = new MyConstructor('Nick', 5, 11.5, "14:15", "crow", [1,2,3], "Ella Fitzgerald", ...);
var MyConstructor = function(options) {}
var options = {
name: 'Nick',
value: 5,
speed: 11.5,
time: "14:15",
something_else: "crow",
another_argument: [1,2,3],
yet_another_argument: "Ella Fitzgerald"
...
}
var my_instance = new MyConstructor( options );