Created
May 3, 2021 08:40
-
-
Save Tynael/57fd26e0af362f46b512dcbd8899c655 to your computer and use it in GitHub Desktop.
Electron App For Loop
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 a = 1; | |
| for ( a = 1; a < 10; a ++) { | |
| console.log('This is a for loop'); | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example used for https://neutrondev.com/how-build-first-app-electron/