You must log in or register to comment.
Total shitpost. We use let now.
You mean
const
.Const ipated = 1;
Unless you code for an ancient java class that includes js code… (yuck)
No, no rewrite, it’s going to de replaced soon™… (like the cobol code)
deleted by creator
This is art
TikTok has rotted my brain, all I can hear is this https://m.youtube.com/watch?v=gXk0QDcRwkU
I code in Python. Can someone explain what is that magic require function here with a bunch of strings?
it’s how modules get loaded with node.js
Either that for the sweet sweet
node_modules
, or this for the code golf:Array(100).fill().forEach((_, n) => console.log((++n % 3 ? "" : "Fizz") + (n % 5 ? "" : "Buzz") || n));
It doesn’t look like
condition
is imported, onlyifCondition
so I’m not sure that will run