Skip to content

Instantly share code, notes, and snippets.

@furudean
Last active December 7, 2021 21:22
Show Gist options
  • Select an option

  • Save furudean/86466ba5b36169f6e3ac0019de6f8d30 to your computer and use it in GitHub Desktop.

Select an option

Save furudean/86466ba5b36169f6e3ac0019de6f8d30 to your computer and use it in GitHub Desktop.
function get(obj, path, defaultValue) {
return path.reduce((o, key) => o[key] ?? defaultValue, obj);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment