📅  最后修改于: 2023-12-03 15:09:07.178000             🧑  作者: Mango
在 JavaScript 中,可以使用字符串的 slice()
和 toUpperCase()
方法将字符串的前 3 个字母变为大写。
代码如下:
let str = "hello world";
let result = str.slice(0, 3).toUpperCase() + str.slice(3);
console.log(result);
输出结果为:HELlo world
上面的代码,首先定义一个字符串变量 str
,然后使用 slice()
方法获取字符串的前 3 个字符,并使用 toUpperCase()
方法将其变为大写。
最后,将得到的新字符串与字符串 str
的剩余部分连接起来,即可得到想要的结果。
值得注意的是,如果原字符串不足 3 个字符,则只能将其全部变为大写。
代码片段按 markdown 标明如下:
```javascript
let str = "hello world";
let result = str.slice(0, 3).toUpperCase() + str.slice(3);
console.log(result);