diff --git a/README.md b/README.md index 280cf56..6cac335 100755 --- a/README.md +++ b/README.md @@ -11,6 +11,24 @@ Disclaimer: Some of these snippets are simply to demonstrate the *quirky* parts Q. What's the result? +```javascript +(function() => { + const func = async () => {} + const type = func.constructor.name; + return type; +})() +``` + +A. + +```javascript +"AsyncFunction" +``` + +--- + +Q. What's the result? + ```javascript (function() { return `text 'inner'` == `text "inner"`;