let studentsPassedInRechecking = [
{name:'Sam',code:'Sam123'},
{name:'John',code:'John123'}]
let studentResultList = [
{name:'Doe',code:'Doe123',isPassed:false},
{name:'Sam',code:'Sam123',isPassed:true},
{name:'John',code:'John123',isPassed:false}]
Expected output:
[{name:'Doe',code:'Doe123',isPassed:false},
{name:'Sam',code:'Sam123',isPassed:true},
{name:'John',code:'John123',isPassed:true}]