Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 618 Bytes

File metadata and controls

35 lines (29 loc) · 618 Bytes

importance: 5


table টিকে সর্ট করুন

একটি table আছে:

<table>
<thead>
  <tr>
    <th>Name</th><th>Surname</th><th>Age</th>
  </tr>
</thead>
<tbody>
  <tr>
    <td>John</td><td>Smith</td><td>10</td>
  </tr>
  <tr>
    <td>Pete</td><td>Brown</td><td>15</td>
  </tr>
  <tr>
    <td>Ann</td><td>Lee</td><td>5</td>
  </tr>
  <tr>
    <td>...</td><td>...</td><td>...</td>
  </tr>
</tbody>
</table>

এখানে আরো বেশি রো থাকতে পারে।

"name" অনুযায়ী কলামটিকে সর্ট করুন।