Во-первых, измените свою функцию, чтобы использовать деструктуризацию объекта.Затем используйте простой оператор console.log
внутри функции:
function myClothes({first, second, third}) {
console.log([first, second, third].join(" "));
return {
first: first,
second: second,
third: third
}
}
console.log(myClothes({
['first']:'sneakers',
['second']:'pants',
['third']:'shirt'
}));
.as-console-wrapper { max-height: 100% !important; top: auto; }