js 拿字符串最后一位
时间: 2023-09-07 14:17:53 浏览: 93
js获取字符串最后一位方法汇总
5星 · 资源好评率100%
可以使用字符串的 length 属性和 charAt 方法来获取字符串的最后一位。
例如:
```javascript
const str = "hello world";
const lastChar = str.charAt(str.length - 1); // 获取最后一位字符 "d"
console.log(lastChar); // 输出 "d"
```
另外,也可以使用字符串的 slice 方法来获取最后一位字符:
```javascript
const str = "hello world";
const lastChar = str.slice(-1); // 获取最后一位字符 "d"
console.log(lastChar); // 输出 "d"
```
阅读全文