Condition JavaScript basée sur la valeur des cellules de la table

$(document).ready(function () {
    $("#tblstudents td:nth-child(3)").each(function () {
        if (parseInt($(this).text(), 10) <= 400) {
            $(this).parent("tr").css("background-color", "red");
        }
    });
});
Ram S