class Super() {
constructor({height = 300, width = 300} = {}) {
this.width = width;
this.height = height;
}
}
new Super({
width: 200
});
// -----------------------------------------
const func = function(a, b, c, ...args) {
// some code
}
func(1, 2, 3, 4, 5, 6, 7, 8);