Forward slash gets misinterpreted by Wix Code as the start of a comment.

So how do we divide one number by another without that happening?

Thanks.

What’s your operation?

4 / 2 = 2
It’s really that simple.

Here’s the code, which does not return the division product as it’s interpreted as a comment slash:

var myVar = (netEUR / 1.13);// This is no longer commented out due to the divisor operand, breaking the code

If you don’t have a comment on the same line it helps, though this is an issue that needs adressing ASAP.

Agreed, but what do you mean by it helps? Does it remove the parsing error?

If not you could use this in the meantime:
let myVar = (netEUR*0.88495575221);