Skip to content

Instantly share code, notes, and snippets.

@DesignFront
Created February 5, 2020 18:25
Show Gist options
  • Save DesignFront/05b23a411bb10308655a0c7536cdf6a0 to your computer and use it in GitHub Desktop.
Save DesignFront/05b23a411bb10308655a0c7536cdf6a0 to your computer and use it in GitHub Desktop.
Regex destructuring
const [, year, month, day] = /^(\d\d\d\d)-(\d\d)-(\d\d)$/.exec('2999-12-31');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment