sorry for my terrible english
I have a funtion like this
function E(element1, element2 = "yes", element3="no")
{
console.log(`E1: ${element1}\nE2: ${element2}\nE3: ${element3}`)
}
When I call this function, I only wanna change the thrid element and the second can stay the same
Something like this E("test", stay, "yes")
Thanks