I Cast Fist
link
fedilink
131Y

Javascript, regarding zero, null and undefined = They're all the same thing

DarkenLM
link
fedilink
11Y

Reminds me of this trifecta.

ryan
link
fedilink
81Y

Oh man, you’ve got me itching to get into the intricacies of JavaScript…

One fun example of the difference: when doing arithmetic operations, null is indeed converted to 0, but undefined is converted to NaN. This has to do with null being an assigned value that represents empty, whereas undefined is not actually a value but a response indicating that there was no value assigned in the first place.

@dan@upvote.au
link
fedilink
7
edit-2
1Y

response indicating that there was no value assigned in the first place.

You can explicitly assign undefined to a variable though.

Another fun fact about JavaScript is that undefined never used to be a keyword. If you did var foo = undefined, foo would indeed have a value of undefined, but it was only because there was no variable called undefined in scope!

You could do var undefined = 42 then var foo = undefined would actually set foo to 42! window.undefined = 42 would break all sorts of things.

Thankfully this was fixed with ES5 in 2009, although it took a few years for browsers to make the change.

darcy
link
fedilink
41Y

javascript moment

That’s not true these days. You can try it yourself right in your browser’s dev console.

These results are from Firefox’s console.

0 == null == undefined
> false
0 == null
> false
0 == undefined
> false
null == undefined
> true
null === undefined
> false

And even in the one case where == says they are the same, you can fix that by making sure you are using === so that it doesn’t do type coercion for the comparison.

@shrugal@lemm.ee
link
fedilink
2
edit-2
1Y

Shhhhh, bashing Javascript is cool around here.

JackbyDev
link
fedilink
English
11Y

Just make fun of it for having two flavors of null.

So what’s wrong with having two flavors of null?

JackbyDev
link
fedilink
English
21Y

It’s super confusing. A lot of people think even one null is a problem.

What’s confusing about that? It’s null, just two different kinds with slightly different meanings. Is having two boolean values also confusing?! Should we simplify it?

I mean I can get behind trying to remove null entirely and replacing it with better concepts, but I cannot understand why having one more null value suddenly makes it confusing. You don’t even have to care in 95% of the cases, and it can be useful in the other 5%.

Honestly, it looks more like some kind of misguided purism to me.

JackbyDev
link
fedilink
English
11Y

Why stop at two? Why not have a dozen versions of null?

@shrugal@lemm.ee
link
fedilink
1
edit-2
1Y

Idk, how many more do you need?

Create a post

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.
  • 1 user online
  • 18 users / day
  • 117 users / week
  • 455 users / month
  • 2.2K users / 6 months
  • 1 subscriber
  • 1.69K Posts
  • 37.2K Comments
  • Modlog