Skip to content
This repository was archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
fixup: not equivalent to delete undefined
Browse files Browse the repository at this point in the history
This is *not* equivalent `delete undefined`, but rather to `delete (0, undefined)`
  • Loading branch information
claudepache authored Jun 9, 2019
1 parent 7248f21 commit 9ddfb75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Because the `delete` operator is very liberal in what it accepts, we have that f
delete a?.b
a == null ? true : delete a.b
```
where `true` is the result of `delete undefined `.
where `true` is the usual result of attempting to delete a non-Reference.
## Not supported
Expand Down

0 comments on commit 9ddfb75

Please sign in to comment.