Personnel how can I multiply the total value of the row being that I want to multiply value by value of each line
var bloco1 = $("table tr").find("td").eq(0).val();
var bloco2 = $("table tr").find("td").eq(1).val();
var bloco3 = $("table tr").find("td").eq(2).val();
var valor = eval(bloco1) * eval(bloco2) * eval(bloco3);
$("#result").html(valor);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script><tableborder="1">
<tr>
<th>exe</th>
<th>coluna2</th>
<th>coluna3</th>
<th>coluna4</th>
<th>coluna5</th>
</tr>
<tr>
<th>linha1</th>
<td><a href="#">10</a></td>
<td><a href="#">20</a></td>
<td><a href="#">15</a></td>
<td><a href="#">5</a></td>
</tr>
<tr>
<th>linha2</th>
<td><a href="#">20</a></td>
<td><a href="#">28</a></td>
<td><a href="#">12</a></td>
<td><a href="#">11</a></td>
</tr>
<tr>
<th>linha3</th>
<td><a href="#">3</a></td>
<td><a href="#">5</a></td>
<td><a href="#">2</a></td>
<td><a href="#">8</a></td>
</tr>
</table>
<p id="result">Resultado: </p>