📅  最后修改于: 2023-12-03 14:52:21.396000             🧑  作者: Mango
在 JavaScript 中,我们通常使用索引来访问字符串中的字符。要获取字符串的最后一个字符,我们需要使用字符串的 length
属性和索引。
下面是一个使用 JavaScript 获取字符串最后一个字符的代码片段:
const str = "Hello, World!";
const lastChar = str[str.length - 1];
console.log(lastChar); // Output: '!'
我们使用了字符串的 length
属性来确定字符串的长度,并使用 []
运算符获取字符串的最后一个字符。因为字符串的索引从零开始,所以我们需要从字符串的长度中减去 1。在这个例子中,字符串 str
的长度为 13,所以我们使用索引 12
来访问最后一个字符。
如果字符串为空,这个方法将不会有效,并返回 undefined
。 因此,在使用索引之前,应该检查字符串是否为空。
const str = "";
const lastChar = str[str.length - 1];
if (lastChar) {
console.log(lastChar);
} else {
console.log("The string is empty!");
}
以上就是使用 JavaScript 获取字符串最后一个字符的方法,希望能帮助到您。