Technically, since they're talking, both 1s are strings. In (most, some have special stuff to do to concatenate) programming, any string + another string results in a concatenated string. Therefore, if you're in JavaScript,
console.log("1"+"1");
Will legitimately print "11" to the console.