Aleen

Results 82 comments of Aleen

@lukastaegert I knew the option. But environment variables only take effect when naming with `$x`, it is safe for `$` only and `x$`, and I think it will be smarter...

It seems there are differences when the literal is assigned to the referenced variable: ```js // input var ONE_SECOND = 1000; var ONE_MINUTE = ONE_SECOND * 60; console.log(ONE_SECOND, ONE_MINUTE); ```...