Last active
February 5, 2016 19:43
-
-
Save AyaMorisawa/4cce6f7bab8b121707e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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