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;}
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.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here