I\'m playing around with arrays trying to understand them more since I tend to work with them alot lately. I got this case where I want to search an array and compare it\'s
You can use .filter() with boolean operators ie &&:
.filter()
var find = my_array.filter(function(result) { return result.param1 === "srting1" && result.param2 === 'string2'; }); return find[0];