var array = [
['name1', 'material1', 'number1', 'place1', 'country1'],
['name2', 'material2', 'number2', 'place2', 'country2']
];
This is the js array
<table>
<tr>
<th>Name</th>
<th>Material</th>
<th>Number</th>
<th>Place</th>
<th>Country</th>
</tr>
</table>
This is the html table i have
Now i want the values of the array generated in my table with pure JS. How is this possible?