js截取字符串第一位
时间: 2023-06-22 17:31:07 浏览: 72
js截取某字符前的字符串
可以使用 JavaScript 中的字符串截取方法 `substring()` 或 `slice()` 来获取字符串的第一位。例如:
使用 `substring()` 方法:
```javascript
const str = "Hello, world!";
const firstChar = str.substring(0, 1);
console.log(firstChar); // "H"
```
使用 `slice()` 方法:
```javascript
const str = "Hello, world!";
const firstChar = str.slice(0, 1);
console.log(firstChar); // "H"
```
以上两种方法的参数都是起始位置和结束位置,不同之处在于 `substring()` 方法的第二个参数是截取的结束位置,而 `slice()` 方法的第二个参数是截取的长度。在本例中,我们只需要截取第一位,因此第二个参数都是 1。
阅读全文