-
正常字符串我们使用 单引号,或者双引号包裹
-
注意转义字符 \
-
字符串可多行编写
-
模板字符串
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script>
'use strict'
console.log('a'); // a
console.log("aa"); // aa
console.log("\x41"); // A
console.log("\u4e2d"); // 中
// 长字符串
var msg =
`hello
world
你好`
let name = "china";
let age = 18;
let msg2 = `你好,${name}`
console.log(name.length); // 5
// 调用方法,大小写装换
console.log(name.toUpperCase());// CHINA
console.log(name.toLowerCase());// china
// 获取指定索引
console.log(name.indexOf('n'));// 3
// 截取字符串 [) 第一个到最后一个字符串
console.log(name.substring(1));// hina
</script>
</head>
<body>
</body>
</html>