+运算,只要一边为字符串,那么该结果一定为字符串。 +号起拼接符的作用 <script> console.log("true"+11); console.log("11" + false); console.log(("11" +1-true)); </script>