Created
July 4, 2019 00:25
-
-
Save platypusrex/aca1ce248a82c62926b1143ec667e643 to your computer and use it in GitHub Desktop.
Infinitely Nested List:
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
<ul> | |
<li>Item 1 | |
<ul> | |
<li>Item 1.1 | |
<ul> | |
<li>Item 1.1.1</li> | |
<li>Item #1.1.2 | |
<ul> | |
<li>Item 1.1.2.1</li> | |
</ul> | |
</li> | |
</ul> | |
</li> | |
<li>Item 1.2</li> | |
</ul> | |
</li> | |
<li>Item 2</li> | |
<li>Item 3 | |
<ul> | |
<li>Item 3.1</li> | |
</ul> | |
</li> | |
</ul> |
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
[ | |
{ | |
id: 1, | |
name: 'Item 1', | |
items: [ | |
{ | |
id: 2, | |
name: 'Item 1.1', | |
items: [ | |
{ | |
id: 3, | |
name: 'Item 1.1.1', | |
items: [] | |
}, | |
{ | |
id: 4, | |
name: 'Item 1.1.2', | |
items: [ | |
{ | |
id: 5, | |
name: 'Item 1.1.2.1', | |
items: [] | |
} | |
] | |
} | |
] | |
}, | |
{ | |
id: 6, | |
name: 'Item 1.2', | |
items: [] | |
} | |
] | |
}, | |
{ | |
id: 7, | |
name: 'Item 2', | |
items: [] | |
}, | |
{ | |
id: 8, | |
name: 'Item 3', | |
items: [ | |
{ | |
id: 9, | |
name: 'Item 3.1', | |
items: [] | |
} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment