console.log中的“,”和“+”有什么区别?
程序员文章站
2022-06-15 14:52:43
...
console.log中的“,”和“+”有什么区别?
总结:
+是先将 哈 和this打印出来的内容连接起来,在一起打印出来,是一个整体;
, 是2个参数,各自打印各自的,毫无任何关系
直接上代码,说明一切;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<script>
/*
总结:
+ 是先将 哈 和this打印出来的内容连接起来,在一起打印出来,是一个整体;
, 是2个参数,各自打印各自的,毫无任何关系
*/
// 例1
function Student(name, age) {
this.name = name;
this.age = age;
console.log("哈", this); //哈 Student {name: "猪", age: 40}
console.log("哈" + this); //哈[object Object]
}
var s1 = new Student("猪", 40);
// 例2
console.log("123", "456"); // 123 456
console.log("123" + "456"); //123456
/*
逗号:是传入两个参数;
第一个是123 456,中间有个空格,因为log函数打印多个参数中间会用空格隔开;
加号:是先进行字符串连接操作得到'123456',再传入这一个参数进行打印。
第二个是123456。
*/
</script>
</body>
</html>
上一篇: 如何将Golang项目部署到云上