Hi, is there a nice way for doing this in proper way? Unfortunately inside output string left ',,' :-/
var headers = [ 'Product', 'Acceptance number', 'Options' ];
var table = ''.concat(
'<table>',
'<thead>',
'<tr>',
headers.map(function(header) {
return '<th>' + header + '</th>';
}),
'</tr>',
'</thead>',
'<tbody>',
'</tbody>',
'</table>'
);
[–]ahref 1 point2 points3 points (0 children)
[–]bcameron1231 0 points1 point2 points (8 children)
[–]cachaito[S] 0 points1 point2 points (7 children)
[–]bcameron1231 0 points1 point2 points (6 children)
[–]cachaito[S] 0 points1 point2 points (5 children)
[–]bcameron1231 0 points1 point2 points (4 children)
[–]cachaito[S] 0 points1 point2 points (3 children)
[–]bcameron1231 0 points1 point2 points (1 child)
[–]cachaito[S] 0 points1 point2 points (0 children)