I am trying to compare string values that I have obtained from my google spreadsheet.
My Months appear in this format \" Jun13\", \"Aug13\" etc. and my script has tr
Just use '==' operator:
if(myString != ''){ //do something }
Enjoy!