Last active
January 1, 2021 18:31
-
-
Save YceeTheTECHie/672d66e3fd10f2edab86889fa92f3081 to your computer and use it in GitHub Desktop.
How To Automate Your Tasks With Three Lines Of Javascript Code.
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
| const open = require("open"); | |
| const urls = ['https://github.com', 'https://facebook.com', 'https://upwork.com', 'https://gmail.com', 'https://medium.com']; | |
| for (let i = 0; i < urls.length; i++){open(urls[i])} | |
| console.log("automation launched"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment