D
Deleted member 2294691
1. Make a directory then a file called index.js and paste the code there.
2. Install NodeJS after that run
npm init and keep pressing enter until It stops asking.3. Run this installation command
npm i request-async and lastly node index.js4. Magic.
JavaScript:
const request = require("request-async")
setInterval(async()=>{
await request("https://google.com/")
await request("https://bing.com/")
await request("https://yandex.com/")
}, 1)