wiki/content/20200922164830-empty_values.md

17 lines
430 B
Markdown
Raw Permalink Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:34:11 +00:00
date: 2020-09-22
2024-05-06 20:40:05 +00:00
id: e250130b-d112-4557-8ac1-77f40608d22c
title: Empty values
---
# Syntax
There are two special empty values, null & undefined that denote the
absence of any meaningful value. They can be used interchangeably and
are an [accident of JavaScripts
design](https://medium.com/@stephenthecurt/a-brief-history-of-null-and-undefined-in-javascript-c283caab662e).
``` javascript
console.log(null == undefined);
```