js 截取字符串第一位
时间: 2024-02-02 17:10:38 浏览: 81
js获取字符串最后一位方法汇总
5星 · 资源好评率100%
在JavaScript中,可以使用字符串的`charAt()`方法或者直接通过索引来截取字符串的第一位。
使用`charAt()`方法:
```javascript
let str = "Hello World";
let firstChar = str.charAt(0);
console.log(firstChar); // Output: "H"
```
直接通过索引截取:
```javascript
let str = "Hello World";
let firstChar = str[0];
console.log(firstChar); // Output: "H"
```
以上两种方法都可以获取字符串的第一位字符。
阅读全文