DEV Community

Discussion on: How to Choose Your First Programming Language?

 
shadowtime2000 profile image
shadowtime2000

One of the worst things with it is that and integer set to 1 equals a string set to "1" and vise versa.

Maybe you should look into stuff like that because === instead of == is a better practice because even though 1 == "1" is true 1 === "1" is not true. Many people use === instead of == so your point doesn't really work there.