Только начал разбираться в JAVA. Дали код в котором нужно разобраться что к чему. Помогите понять что делает этот кусок:
if (this._opened_categories.length) {
var h = " category";
"undefined" !== typeof a.category1 && -1 !== $.inArray(a.category, this._opened_categories) && (h += " category_highlighted")
} else h = "";
image_html = '<div class="p' + b + " r" + e + " c" + f + ("undefined" !== typeof a.tooltip ? " hastooltip" :
"") + h + '" style="width:' + this._options.width + "px;height:" + this._options.height + "px;top:" + g + "px;left:" + k + 'px;">';
"undefined" !== typeof a.link && (image_html += '<a href="' + a.link + '"' + ("_blank" === a.target ? ' target="_blank"' : "") + ">");
image_html += '<img src="' + a.url + '" />';
"undefined" !== typeof a.link && (image_html += "</a>");
this._options.showDesc && "undefined" !== typeof a.description && (image_html += '<div class="desc" style="height:' + this._options.descHeight + 'px;">' + a.description + "</div>");
return image_html += "</div>"