js字符串截取第一位
时间: 2023-08-14 15:11:07 浏览: 230
js获取字符串最后一位方法汇总
5星 · 资源好评率100%
要截取 JavaScript 字符串的第一个字符,你可以使用 `charAt()` 方法或者直接通过索引访问字符串的第一个元素。下面是两种方法的示例代码:
使用 `charAt()` 方法:
```javascript
const str = "Hello, World!";
const firstChar = str.charAt(0);
console.log(firstChar); // 输出 "H"
```
直接通过索引访问字符串的第一个元素:
```javascript
const str = "Hello, World!";
const firstChar = str[0];
console.log(firstChar); // 输出 "H"
```
这两种方法都可以用来获取字符串的第一个字符。
阅读全文