null is a primitive data type represents an object with no value.

Example

<script>
let a = null;
document.write(a);
</script>