8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Example:
function example (x) { x = x || 1; return x; } example(0); // --> 1
But the transformed version:
function example(x=1) { return x; } example(0); // --> 0
This same issue also applies to the transform for a = a ? a : 1
a = a ? a : 1