How can function parameter values in js be passed out of order?

function fun(a,b){
console.log(`${a},${b}`)
}

fun(123,456);
//123a456b123456

is there a parameter passing method in js similar to
fun (baked 456
, which is not passed sequentially?


function fun ({x,y,k = 1, j= 2} = {}){}
fun({x:1,y:2,j:3})

then change the parameters to object mode;

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b30f51-2bd6e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b30f51-2bd6e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?