const app = require('express')()
const port = 3000
app.get("/", (req,res) => {
res.send("Hello World")
})
let rand = Math.random()
rand < 0.5 ? gender = 0 : gender = 1
let emoji = `${gender ? '👩💼' : '👨💼'}`
app.listen(port, () => {
console.log(`listening on http://localhost:${port}`)
})
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter