; before a function in JS
; before a function in JS
Out of context: Reply #2
- Started
- Last post
- 3 Responses
- ********0
// careful: will break
a = b + c
(d + e).print()This is actually evaluated as:
a = b + c(d + e).print();Easy solution: when a line starts with parenthesis, prepend a semicolon to it.
;(d + e).print()