1 在SQL中反引号的作用-区分关键字
当属性名与SQL关键字冲突时使用反引号将属性名扩起来,用于区分关键字
2 在ES6中反引号的作用-模板字符串
模板字符串的作用:
2.1 可以当普通字符串使用
2.2 可以定义多行字符串
模板字符串可以将换行原生输出
<script type="text/javascript"> let str = `这是第一行 这是第二行;`; console.log("模板字符串输出换行:",str); </script>
2.3 字符串可以插入变量、表达式使用${}
<script type="text/javascript"> let name = "zinksl"; let str2 = `博主名称=${name},在C站${2+2}年了`; console.log("博主信息:",str2); </script>
2.4 字符串可以调用函数使用${}
<script type="text/javascript"> function sayHello(name){ return "hello,"+name; } let str3 = `开始调用函数:${sayHello('zinksl')}`; console.log(str3); </script>