If I have this function and I want to base just parameter b, how I can do that.
function x(a=1,b=2) { console.log(a); console.log(b); }