how do i test my javascript function the function and directions are as follows showing screenshots of it working would be great!! function noSql(list, query) { var result=[]; var match =...


how do i test my javascript function


the function and directions are as follows


showing screenshots of it working would be great!!


function noSql(list, query) {
    var result=[];
    var match = matchmaker(query);
    for(var i=0; i
        var temp = list[i];
        if(match(temp)) {
            result.push(temp);
        }
    }
    return result;
}



noSql( list, query )

This function accepts a list of elements and an object known as the query. The method returns a list of all elements that have each of the key/value properties of the query.


Examples




  • var objects = [ { public : true, name : "Lion King" }, { public : true, name : 'Dumbo' }, { public : false, name : 'Lion King' }, { name : 'Xeon', rating : 5 } ];

  • noSql( objects, { public:true } ) => [ { public:true, name:'Lion King' }, { public:true, name:'Dumbo'}]

  • noSql( objects, { name:'Lion King' } ) => [ { public:true, name:'Lion King' }, { public:false, name:'Lion King'}]

  • noSql( objects, { rating:5 } ) => [ { name:'Xeon', rating:5 } ]

  • noSql( objects, { public:false, name:'Dumbo' } ) => [ ]




Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here