I cant able to understand the following piece of code.what does the third line of code means?
this.subset = function(otherSet) {
var firstSet = this.values();
return firstSet.every(function(value) {
return otherSet.has(value);
});
};