this post was submitted on 16 Jul 2023
700 points (92.3% liked)

Programmer Humor

32042 readers
1215 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 

No offence

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 1 year ago

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.