Say I have function:
output = document.querySelector(".output")
function sum(a,b,c){
return `${c},${a},${b}`
}
output.innerHTML = sum(b=2,c=3)
<div class="output"></div>
I need to define while calling, which of parametrs I exatly defining, but have no idea why its its sees "b=2" like "2".