Provide a helper function that returns all siblings of an element.
DOM
Get the Children of an Element
Get all the child elements of an element
Selecting Elements By Tag Name
Select elements that match a tag name using the getElementsByTagName() method.
Selecting Elements By Class Name
Select elements that match a class name using the getElementsByClassName method.
Get the Parent of an Element
Get the parent node of an element by using the parentNode property of the element.
Selecting an Element By Id
Select an element that matches the id using the getElementById() method.
Selecting Elements By CSS Selector
Select elements that match a CSS selector using the querySeelctor() and querySelectorAll() methods.