Which of these statements add s1 and s2 together?

s1 += s2;var s = s1 + s2;var s = s1.concat(s2);var s = s1.substr(s2);

Sweet! We can use the concat() method or the assignment operators to add strings together.

Oh noes! We can use the concat() method or the assignment operators to add strings together.