In programming languages other than Javascript, are there similar distinctions between the concepts of 'null' and 'undefined'?

Viewed 14

I'm aware that Python has the concept of None which, from my new-to-Python eyes, seems to be similar to both null and undefined as they're used in JavaScript. Are there other languages that tend to be more like JavaScript's approach (where null and undefined are their own things) or do things tend to use Python's approach (where it seems generally summed up by None)?

0 Answers
Related