JavaScript의 include() 메서드는 배열이나 문자열에 특정 요소나 하위 문자열이 포함되어 있는지 확인하는 데 사용됩니다. 지정된 시작 매개변수에 따라 문자열이나 배열의 특정 위치에서 검색을 시작합니다. 발견되면 true를 반환하고, 발견되지 않으면 false를 반환합니다.
JavaScript에서 include() 사용
include()가 무엇인가요?
includes()는 문자열이나 배열에 주어진 하위 문자열이나 요소가 포함되어 있는지 확인하는 데 사용되는 JavaScript의 내장 메서드입니다.
Syntax
<code class="javascript">array.includes(element, start) string.includes(substring, start)</code>
위치:
array
또는 string
: 확인할 배열 또는 문자열. array
或 string
:要检查的数组或字符串。element
或 substring
:要在其中查找的元素或子字符串。start
(可选):指定从字符串或数组中的哪个位置开始查找(从 0 开始)。用法
数组
要检查数组中是否包含某个元素,可以使用以下语法:
<code class="javascript">const fruits = ["apple", "banana", "orange"]; console.log(fruits.includes("apple")); // true console.log(fruits.includes("grape")); // false</code>
字符串
要检查字符串中是否包含某个子字符串,可以使用以下语法:
<code class="javascript">const message = "Hello, world!"; console.log(message.includes("world")); // true console.log(message.includes("universe")); // false</code>
可选的 start
参数
start
参数允许您指定从字符串或数组中的哪个位置开始查找。例如:
<code class="javascript">const fruits = ["apple", "banana", "orange", "apple"]; console.log(fruits.includes("apple", 2)); // true (从索引 2 开始查找) console.log(message.includes("world", 6)); // false (从索引 6 开始查找)</code>
返回结果
includes() 方法返回一个布尔值:
true
:如果找到了指定的元素或子字符串。false
element
또는 substring
: 찾을 요소 또는 하위 문자열입니다. start
(선택 사항): 검색을 시작할 문자열 또는 배열의 위치를 지정합니다(0부터 시작). 🎜🎜🎜🎜Usage🎜🎜🎜🎜Array🎜🎜🎜배열에 특정 요소가 포함되어 있는지 확인하려면 다음 구문을 사용할 수 있습니다. 🎜rrreee🎜🎜String🎜🎜🎜문자열에 특정 하위 문자열이 포함되어 있는지 확인하려면 다음을 수행하세요. 다음 구문을 사용하십시오. 🎜rrreee🎜🎜선택적 start
매개변수 🎜🎜🎜 start
매개변수를 사용하면 문자열이나 배열에서 검색을 시작할 위치를 지정할 수 있습니다. 예: 🎜rrreee🎜🎜Return results🎜🎜🎜includes() 메서드는 부울 값을 반환합니다. 🎜🎜🎜true
: 지정된 요소 또는 하위 문자열이 있는 경우. 🎜🎜false
: 지정된 요소 또는 하위 문자열을 찾을 수 없는 경우. 🎜🎜위 내용은 js에서 include를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!