Skip to content

Instantly share code, notes, and snippets.

@AyaMorisawa
Last active February 5, 2016 19:43
Show Gist options
  • Save AyaMorisawa/4cce6f7bab8b121707e3 to your computer and use it in GitHub Desktop.
Save AyaMorisawa/4cce6f7bab8b121707e3 to your computer and use it in GitHub Desktop.
const valueSource = 'hage';
const keysSource = 'a/b/c';
const keys = keysSource.split('/');
const result = keys.reduceRight((value, key) => {
return { [key]: value };
}, valueSource);
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment