I'm just a regular guy who starts to programming for fun and I'm looking for great opportunities in this wonderful world of technology.
import express from 'express'
const app = express()
const PORT = 3000
const marcus = {
stack:"Full-Stack Developer",
pronouns: ['He', 'Him'],
favoriteDrinks: ['cajuina', 'coffee', 'tea'],
favoriteFoods: ['burger', 'lasagna'],
like: ['games', 'comics', 'animes'],
};
app.get('/about', (req, res) => (
res.status(200).json({ marcus })
);
app.listen(PORT, () => (
console.log(`Server running at port ${PORT}...`)
);