Skip to content

Instantly share code, notes, and snippets.

@azami
Created October 17, 2018 02:59
Show Gist options
  • Save azami/379e5ab4f23ed206e625e18358fa687c to your computer and use it in GitHub Desktop.
Save azami/379e5ab4f23ed206e625e18358fa687c to your computer and use it in GitHub Desktop.
JavascriptのObjectを.つなぎで指定して値を取得する
const keys = 'bar.baz'.split('.');
const foo = {foo: {bar: {baz: 123}}};
keys.reduce(((acc, cur) => acc[cur]), foo.foo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment