`const a = false ? (console.log("hello"), 4) : 5;` Expected output: ``` a = (false and (function() console:log("hello") return 4 end)()) or 5 ``` Actual output: ``` print("hello") a = false and 4 or 5 ```
const a = false ? (console.log("hello"), 4) : 5;Expected output:
Actual output: