.... it still matters. If you're writing while(value) { and said value starts as a truthy and you were planning to set it to falsy inside that while, you'll never be able to do that because the editor will freeze before that. You write infinite loops all the time, you just write the logic to stop them after, if an editor renders as soon as you write, it will freeze. It should ideally show an error as editors like CodeSandbox, CodePen or StackBlitz do.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
.... it still matters. If you're writing
while(value) {and said value starts as a truthy and you were planning to set it to falsy inside that while, you'll never be able to do that because the editor will freeze before that. You write infinite loops all the time, you just write the logic to stop them after, if an editor renders as soon as you write, it will freeze. It should ideally show an error as editors like CodeSandbox, CodePen or StackBlitz do.