null means a reference does not currently point to an object.
GameObject player = null;
Check before using it:
if (player != null)
{
player.SetActive(false);
}
Null-coalescing:
string name = playerName ?? "Unknown";
Nullable value type:
int? score = null;