N00b here! I have addresses where each part needs to be on a separate line. But if there's nothing in the Address line_2 or Address line_3, then don't insert a line break. How do I go about doing this?
My javascript:
var html = "<b>" +first +"\xa0" +last +"</b> <br/>" + line_1 +"<br/>"
+ line_2 +"<br/>"
+ line_3 +"<br/>"
+ city +"\xa0" + state +"\xa0" +zipcode;
Thank you in advance!