function toPlusStr( n ) { n += ""; return n.charAt(0) == "-" ? n : "+" + n; } var a=1, b=-2, m=-3; alert("Уравнения прямой: " + a + "*x" + toPlusStr(b) + "*y" + toPlusStr(m) + "=0");