Skip to main content
Stack Overflow
  1. About
  2. For Teams

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

How to make a nested object out of an array

given an array like [‘a’, ‘b’, ‘c’]

how can i get an object like

{
 current: ‘a’,
 next : { 
 current: ‘b’,
 next: {
 current: ‘c’
 }
 }
}

Answer*

Draft saved
Draft discarded
Cancel
1
  • i ended up using this answer as it also translates to other languages easily Commented Aug 27, 2021 at 22:35

lang-js

AltStyle によって変換されたページ (->オリジナル) /