I’d bet it’s less simple input sanitizing and more 2 mistakes made separately because they don’t know any better.
The input field converting everything to a string indiscriminately
Because they did 1, converting everything back to the assumed type
If the front end Dev makes the first mistake, null would be sent in the body as “null”. Then on the backend, somebody might even be binding the variables correctly, but before hand realizing they have to deal with the market and rather than just have a conversation undoes it in their own code.
Who the hell writes
if 'null'
? If it’s a thing, what language would interpret a string like that?Fucking JavaScript
No it doesn’t?
> Boolean(null) false > Boolean('null') true > null == 'null' false
Srsly?
Javascript is fun. The video takes a few jabs at ruby and then gives a glimpse into the insanity that is Javascript.
More of this please
!![] + !![] == 2
I’d bet it’s less simple input sanitizing and more 2 mistakes made separately because they don’t know any better.
If the front end Dev makes the first mistake, null would be sent in the body as “null”. Then on the backend, somebody might even be binding the variables correctly, but before hand realizing they have to deal with the market and rather than just have a conversation undoes it in their own code.