I have the following array in my main.js.
ko.observableArray(
[ output[0],output[1],output[2],output[3],output[4]]);
and I want to dislpay each output[i] one by one on the ul element of the following html:
<section>
<ul id="results" ></ul>
</section>
How to achieve it ? Thanks in advance!