htmlcollection foreach code example
Example 1: html collection of elements to array
const boxes = Array.from(document.getElementsByClassName('box'));
Example 2: cshtml foreach
@foreach (var item in Model.Foos)
{
<div>@item.Bar</div>
}
Example 3: html collection of elements to array
const boxArray = [...document.getElementsByClassName('box')];