语法 字符串模板 作用:可以在字符串中使用变量
<!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>
/*
语法 字符串模板 作用:可以在字符串中使用变量
*/
var str = 10;
var b = "hello";
console.log(str+b);//10hello
var sum = `${str}hello`;
console.log(sum)//10hello
</script>
</body>
</html>