Javascript Data types
Aug 20, 2021 · 4 min read · Introduction JavaScript is a loosely typed and dynamic language. WTH does that mean, nerd? 🥴 Well, consider this example: let age = 15; // age is of type number age = "Bello ololade" ; // age is of type string Now that's sloppy right? Meani...
IInsha commented
