Jan 29, 2023
You know, ternary (conditional) operators!
const a = condition? if_true : if_false;
Ternary operators are probably the most underrated. Being a declarative programming enjoyer, I think people don’t use ternary operators enough even when appropriate. Admittedly,
Jul 08, 2020
Dear reader, I’m going to be honest with you. You just got pranked. EPIC STYLE! *Dabs* 😎
The title is clickbait, but please do keep reading. You may find some interesting things.
A Domain Specific Language (DSL) is a specialized language designed to solve a very specific problem. Some examples …