I'm trying to take a JavaScript array of strings, and return a boolean value based on all the elements in it. A logical && between non-empty strings should return true. I've found simple way to return a bool between two strings, using !!("String1" && "String2").
However, if I had these two strings in an array like var myArr = ["String1","String2"], how would I go about doing this?