When I run the code below, I get the following output: 'hi', 'text', true. However, I want the output: 1, 'hi', true. Is this possible without some kind of workaround and without manually assigning the first argument?
function myFunc(number=1, text='text', bool=true) {
console.log(number, text, bool)
}
myFunc(text='hi')