i have this question about a foreach in knockout js and the first item. I want to skip the first one and iterate over the next items.
The main issue is that i wanna do something like this:
<div data-bind="text: ItemsArray[0].someProperty"></div>
<div data-bind="foreach: ItemsArray"> <!-- here i must skip the first item -->
<div data-bind="text: someProperty"></div>
</div>