Skip to content

Instantly share code, notes, and snippets.

@RinatValiullov
Last active November 15, 2019 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RinatValiullov/8190ce2a1c847af601f971def1798a10 to your computer and use it in GitHub Desktop.
Save RinatValiullov/8190ce2a1c847af601f971def1798a10 to your computer and use it in GitHub Desktop.
For translation of article "Performance of JavaScript optional chaining" - https://bit.ly/33Pg0uv
var _foo, _foo$bar, _foo$bar$baz;
(_foo = foo) === null || _foo === void 0 ? void 0 : (_foo$bar = _foo.bar) === null || _foo$bar === void 0 ? void 0 : (_foo$bar$baz = _foo$bar.baz) === null || _foo$bar$baz === void 0 ? void 0 : _foo$bar$baz.qux;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment