📅  最后修改于: 2023-12-03 15:28:58.395000             🧑  作者: Mango
在 TypeScript 中,我们可以使用 includes
方法来判断某个字符串是否包含在字符串列表中。下面是一个示例代码:
const stringList: string[] = ['apple', 'banana', 'orange'];
function isInStringList(str: string): boolean {
return stringList.includes(str);
}
console.log(isInStringList('apple')); // true
console.log(isInStringList('grape')); // false
在上面的代码中,我们声明了一个 stringList
数组,里面包含三个字符串,然后定义了一个名为 isInStringList
的函数,该函数接受一个字符串作为输入,并返回一个布尔值,表示该字符串是否包含在 stringList
数组中。
我们使用 includes
方法来判断该字符串是否存在于数组中,并返回相应的布尔值。最后,我们使用两个 console.log
语句来测试该函数,输出的结果分别为 true
和 false
。
以上就是使用 TypeScript 飞镖检查字符串是否包含在字符串列表中的介绍,希望对您有所帮助。