Vincent D'amour
Vincent D'amour
## The problem Hi, first of all, thanks for this awesome tool. I'm trying to render expression for each cycle of a loop, but only the last execution is rendered;...
When writing a while loop, the code will eval and loop infinitely. This is the code I wrote before my browser freeze: ``` let i = 0; while(i < 10)...
I realized that 2 if block where almost identical. I did a small refactor. I don't know your coding preferences, but to me it looks cleaner. Feel free to merge...
## The problem When I initialize a variable, the output will be the last valid expression. For example: ``` let x = 5; x let y = 8; y ```...