Ruby:
1 + 2 + "3" TypeError (String can't be coerced into Integer)
PHP:
echo 1 + 2 + "3"; 6
JavaScript:
1 + 2 + "3" "33"
Twitterにあがってたネタを見てちょっと確認してみました。やっぱりRubyの挙動が落ち着きます…。