ES6 字符串面试题

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