Why All the Hate for JavaScript?

Wednesday, September 9, 2020

Hello World! I just wanted to ask you a question, why do so many people hate JS? Btw this is a test article, i’ll add stuff later.

Express server:

const express = require("express")
const app = express();

app.get("/", (req, res) => {
  res.send("Are you da legendary captain milk?")
})

app.listen(process.env.PORT || 3000, () => console.log("Server up!"))

Test test test test x2

codingjavascript

Welcome to my blog!