You can also compare array lists
HTML Code:
temp.a_0 = {"list", "lista"};
temp.a_1 = {"list, "listb"};
if (@temp.a_0 == @temp.a_1) //Checks if the arrays are the same
or
if (@temp.a_0 != @temp.a_1) //Checks if the array isn't the same
(This can come in handy, thought I'd let you know!)