- 如何判断字符串 “Hello, World!” 是否以 “Hello” 开头?
答案:
const str = "Hello, World!";
const startsWithHello = str.startsWith("Hello");
console.log(startsWithHello);
- 如何判断字符串 “Hello, World!” 是否以 “World” 结尾?
答案:
const str = "Hello, World!";
const endsWithWorld = str.endsWith("World");
console.log(endsWithWorld);
- 如何获取字符串 “Hello, World!” 中 “World” 的索引位置?
答案:
const str = "Hello, World!";
const index = str.indexOf("World");
console.log(index);
- 如何将字符串 “Hello” 和 “World” 连接起来形成 “Hello World”?
答案:
const str1 = "Hello";
const str2 = "World";
const combinedStr = `${str1} ${str2}`;
console.log(combinedStr);
- 如何将字符串 “Hello, World!” 中的 “Hello” 替换为 “Hi”?
答案:
const str = "Hello, World!";
const replacedStr = str.replace("Hello", "Hi");
console.log(replacedStr);