1. 描述
- 字符串本质就是一个字符数组
- "hello" --> ["h", "e", "l", "l", "o"]
2. 属性和方法
(1)length 获取字符串的长度
(2)字符串[index] 获取指定位置的字符
(3)at(index) 实验方法,根据索引获取字符,分可以接受负索引
(4)charAt(index) 根据索引获取字符
(5)concat(str1, str2, ...) 用来链接两个或多个字符串
let str = "hello";
console.log(str[1]); // e
for(let ch of str){
console.log(ch);
}
console.log(str.at(1)); // e
console.log(str.at(-1)); // o
console.log(str.charAt(2)); // l
console.log("hello", "world", "!"); // hello world !
标签:index,console,log,包装,JavaScript,笔记,str,字符串,hello
From: https://www.cnblogs.com/zibocoder/p/17068164.html