I have one 'not observable' array of objects in view-model and I want to render some div-s according to the array.
<div data-bind="foreach: sequences">
<!-- ko if: $parent.sequences.length-1 > $index -->
<div>Some content </div>
<!-- /ko -->
</div>
Code above should render div for all elements except the last one, but it does not work, I did not get any error, I do know what is happening ?