Created
September 1, 2019 03:43
-
-
Save heinthanth/e672ce992586320f256ce0db8bddc379 to your computer and use it in GitHub Desktop.
Do While
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
var x = 3; | |
do { | |
// will execute once although condition is x != 3 | |
} while(x != 3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment