I found some codes when reading a article. And i can't understand it. But when i tested it, it worked! can anyone told me what is parameter means? it is a destructuring?
function test ({ a = '1', b = '2', c = '3' } ={}) {
console.log(a, b, c);
};
test(); //> "1" "2" "3"