I am new on Angular2. I have use \"ngFor\" to iterate over array of objects and show them as matrix having 3 columns f
With *ngFor you can iterate over an array. If the array items are arrays, you can nest *ngFor like:
*ngFor
@Component({ selector: '...' template: ` {{col}} ` }) class Component { matrix = [['a', 'b', 'c'],['d', 'e', 'f'],['g', 'h', 'i']]; }