diff --git a/README.md b/README.md index e1e5eda..e58b8c0 100644 --- a/README.md +++ b/README.md @@ -306,6 +306,7 @@ No. Optional Chaining just checks whether some value is undefined or null. It do undeclared_var?.b // ReferenceError: undeclared_var is not defined arguments?.callee // TypeError: 'callee' may not be accessed in strict mode arguments.callee?.() // TypeError: 'callee' may not be accessed in strict mode + true?.() // TypeError: true is not a function })() ```