I am working with an array in my TypeScript file that looks like this:
let order : any[] = [
[{order_id:1,order_name:"car"},{order_id:2,order_name:"honda car"},{order_id:3,order_name:"bmw car"}],
[{order_id:4,order_name:"honda city car"}],
[{order_id:5,order_name:"mercerdeces car"}],
]
Can someone please explain how to efficiently display this type of data in an Angular application using the ngFor directive?