I have stored values in two arrays to iterate in a single ion-list . Billerstatusstate and Billerstatusnamelst are the two arrays.
I have tried the foll
Why instead of doing this
{{bil}}
don't you create a single array
in your code:
// I'm assuming they both have the same size
for (var _i = 0; _i < Billerstatusstate.length; _i++) {
this.singleArray.push({
stat: this.Billerstatusstate[_i],
bil: this.Billerstatusnamelst[_i]
});
}
And then in your page:
{{item.bil}}