Since a few hours I'm trying to find the best way to build the tbody section of my html <table> from two javascript arrays. 
Note: I may not use Jquery.
My array contains 2 childs arrays:
var arParent = [
    ["col1a", "col1b", "col1c"],
    ["col2a", "col2b", "col2c"] 
]
I would need something like:
<tr>
    <td>col1a</td>
    <td>col2a</td>
</tr>
<tr>
    <td>col1b</td>
    <td>col2b</td>
</tr>
<tr>
    <td>col1c</td>
    <td>col2c</td>
</tr>
 
     
     
     
    