Skip to content

Instantly share code, notes, and snippets.

@smeijer
Created August 2, 2019 17:27
Show Gist options
  • Save smeijer/8815e8d4658f8009281a077dea736d4c to your computer and use it in GitHub Desktop.
Save smeijer/8815e8d4658f8009281a077dea736d4c to your computer and use it in GitHub Desktop.
medium-costs-of-optional-chaining-6
var can = user && user.can || {};
var canEdit = can.edit;
var canDelete = can.delete;
// transpiles to:
"use strict";
var can = (user && user.can) || {};
var canEdit = can.edit;
var canDelete = can.delete;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment