below, there is a method that accepts four parameters x y k j. Where the default value of k j is 1, 2
get: function (x, y, k = 1, j = 2){}
you can call
when you want to omit the last two parameters.this.get(1,2)
now if I just want to omit the third parameter, what should I write?
it seems impossible to know which parameter has been omitted in this way
this.get(1,2,3)