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.
The following throws compile time error.
let n: float = -9.9 -n->Js.log
The following cause a runtime error.
let n: float = -9.9 -.n->Js.log
It produces JS code:
console.log(--9.9);