Created
May 10, 2023 16:44
-
-
Save suhailgupta03/d075efba939ec69f67ea9a5661326156 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 <= 7;schoolClass++) { | |
console.log("I am in class ", schoolClass); | |
} // this will terminate the loop once the student is in class 8 | |
console.log("After the for loop"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment