I’m sure we’re all familiar with the famous fizz buzz problem, it goes something like this: Counting from 1 to 100, print either
1. fizz,
2. buzz,
3. fizzbuzz,
4. or the number itself
depending on the current iteration Today we’ll build this in TypeScript, and no, I don’t mean…