-
Python vs JavaScript
Wednesday, September 9, 2020
Both languages are very good, but what should you use for what, and why? That’s what i will be discussing in this post. I’d like to thank ZaphireHacks for bringing this up, i already had this debate before, but i think it’s important to have it again. I will be rating JS and Python with 3 points, which are: Performance Functionality and Difficulty First, i think it’s important to define what we mean by Python and JavaScript, because for some points, the language itself can’t just define that because there are multiple implementations.…
-
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