这里介绍使用字符索引截取的方法:
let str = "Hello, World!"; let lastChar = str[str.length - 1]; // 截取最后一个 console.log(lastChar); // 输出: "!" let startChar = str[0]; // 截取第一个 console.log(startChar ); // 输出: "H"
let str = "Hello, World!";
let lastChar = str[str.length - 1]; // 截取最后一个
console.log(lastChar); // 输出: "!"
let startChar = str[0]; // 截取第一个
console.log(startChar ); // 输出: "H"