Comment obtenir le Nth Tr dans JS

var value = $('table')
              .find('tr:eq(3)') // get the 4th table row
              .find('td:eq(4)') // get the 5th table cell in that row
              .text();          // get the text inside that cell
Thoughtful Tapir