Developer Features: Server Script: group.GetChildren
## Overview
In the "[Server Script](/en/manual/table-management-server-script)", get a collection of "Group Object" that index "[Child Group](/en/manual/basic-operations-group-child)" from the "Group Object".
## Syntax
```
group.GetChildren()
```
## Return Value
Returns a collection of "Group Object".
## Usage Example
In the following example, the group IDs of child groups belonging to the group with group ID 1 are output to the log.
##### JavaScript
```
let group = groups.Get(1);
for (let member of group.GetChildren()) {
context.Log(`${member.GroupId}`);
}
```
## Related Information
<div id="ManualList"><ul><li><a href="/en/manual/basic-operations-group-child">Add Child Group</a><span>10.01.2024 up</span></li></ul></article>
<ul><li><a href="/en/manual/table-management-server-script">Table Management: Server Script</a><span>08.13.2024 up</span></li></ul></article></div><input id="SearchTextHidden" type="hidden" value="" />