I have an array of Strings like below :
nameArray = ["Str1","Str2","Str3","Str4",......];
I need to display this data into tabular format with three columns like below :
Col1 Col2 Col3
--------------------------
Str1 Str2 Str3
Str4 Str5 Str6
Str7 Str8 .....
Need help to write logic to display the above data in Angular, TypeScript.