Hey guy's I have a table
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
And I have an array to be filled with this data:
var params = {
"fruit":"apple",
"test": "Nope",
"values": [
[Here,Must ,Come the header ],
[Here,must come ,the first table data],
[Here must,comt the ,second tabel data]
],
}
And this is just an example of 1 table some tables contain more rows.
How can I make sure the whole data comes in the array ?