I have a simple function like this:
function myfunction(text: string,num: number) {
console.log( args_namesValues );
}
I would like to get as a result after calling
myFunction("myText", 3)
To output the following or similar:
{text:"myText",num:3}
What can be the code behind args_namesValues.