this post was submitted on 16 Jul 2023
711 points (92.4% liked)
Programmer Humor
32383 readers
690 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
In my experience (Javascript and PHP, which both have plenty of footguns), these pitfalls can be avoided by using good practices.
Just because they are dynamically typed doesn't mean you have to use dynamic typing. Don't type switch your variables.
Just because you don't have to use brackets in a certain scenario doesn't mean you can't. Use them as needed for clarity.
That kind of thing.