Loops
Loops let you repeat blocks of code efficiently.
NODEJS
for (const port of [3000, 3001]) console.log(port);Try it Yourself
Node.js Tutorial
Source: Bro Code
Loops let you repeat blocks of code efficiently.
for (const port of [3000, 3001]) console.log(port);