目录
获取数组下标:student.indexOf('u')
截取数组下标:student.indexOf(student.indexOf(1))
🌸字符串
🥀正常字符串使用单引号或者双引号包裹
<script>
'use strict'
console.log('a');
console.log("a");
</script>
🥀注意转义字符\
\' 一个字符串
\n 换行
\t tab
\u4e2d unicode字符(双)
\u### unicode
\x41ascll字符 ascll字符(单)
🥀 多行字符串编写
💮Java长字符串
<script>
'use strict'
//tab上面的esc下面
var msg =
` hello
world
你好呀
你好`
</script>
🥀模板字符串
<script>
let name = "qianduan";
let age = 3;
let msg = `你好呀,${name}`
</script>
🥀字符串长度
str.length
🥀字符串的可变性,不可变
<script>
console.log(student[0])
s
undefined
student[0] = 1
1
console.log(student)
student
undefined
</script>
🥀大小写转换
<script>
// 注意是方法转换不是属性
student.toUpperCase()
student.toLowerCase()
</script>
🥀student.indexOf('t')
🥀substring
<script>
// [) 包含前面不包含后面
student.substring(1) //从第一个字符串截取到最后一个字符串
student.substring(1,3) //[1,3)
</script>