joaolvcm·7 anni fa·discussBy the way, this has nothing do with f strings but for debugging JavaScript you can do something likeconsole.log({var1,var2,var3});And the logged object will get created with the variables content and the variable nem as key, so it will get logged neatly like{var1: "this is var1", var2: 2, var3: "3"}
console.log({var1,var2,var3});
And the logged object will get created with the variables content and the variable nem as key, so it will get logged neatly like
{var1: "this is var1", var2: 2, var3: "3"}