I'm in this no-experience-to-apprenticeship program and everyone in my class thinks type coercion is the greatest thing ever.
Programmer Humor
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
Just be better lmao
Who would use that kind of type coercion? Who? I want to see his face.
It's not even the coercion that is the problem here. The types are already bad by themselves.
I take this as less of a "I can't use this intuitive feature reliably" thing and more of a "the truth table will bite you in the ass when you least expect it and/or make a mistake" thing.
Just use a formatter. It'll show you that the second one is two statements:
{}
(the empty block)+[]
coerce an empty array to a number:new Number(new Array())
I totally get that: use the right tools and you'll be okay. This applies to many technologies in this space.
With respect, I still take this advice like hearing "look out for rattlesnakes if you're hiking there." It might be safer to just hike where there are no rattlesnakes, instead.
You're right, of you have compete freedom, do that. If the place you want or need to go to is most comfortably reachable via rattlesnake road, bring boots.
In other words, if you don't think the wasm landscape is mature enough to build a web thing with it, you are stuck with JavaScript, but you don't have to rawdog it. I haven't run in a single weird thing like this in years of writing typescript with the help of its type system, ESLint and a formatter.
This is why I try my damnedest not to write in weakly typed languages.
string
+ object
makes no logical sense, but the language will be like "'no biggie, you probably meant string + string so let's convert the object to string"! And so all hell breaks loose when the language's assumption is wrong.
Some automatic conversion is fine.
a=3+0.2
print("Hello {name}. You are {age} years old")
That kind of thing. But the principle of least surprise definitely applies. If you get to the point where you're adding two booleans and a string, I feel like the language should at least say something. At least until the technology exists for it to physically reach out of your screen and slap you.
You don't necessarily need types for that kind of thing though, a strict linter that flags that code works just as well
{} + 0
>> 0
0 + {}
>> "0[object Object]"
I'm going home.
0 == []
>> true
"0" == []
>> false
0 == "0"
>> true
It's best not to touch anything web related, lest you want to go mad. It's like the elder scrolls or laying eyes on some cosmic horror creature. Tbf this also goes for C++
At least C++ build tools are easier than modern JS.
I don't think "easier" is the right way to compare here. The C++ build tools will absolutely rewrite your code into something you can't expect to guess, but it doesn't make them hard to "use".
Keep to sane environments to keep sane.