Created
May 10, 2023 16:54
-
-
Save suhailgupta03/0b13b95882af347d942bdcc9b90958aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for(var schoolClass=5; ;schoolClass++) { // there is no | |
// stopping condition in my code | |
console.log("I am in class ", schoolClass); | |
} // so the only way to stop this is to press CTRL+C | |
console.log("After the for loop"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment