DEV Community

Cover image for Método includes - JavaScript
Elian Becali
Elian Becali

Posted on • Updated on

Método includes - JavaScript

O método includes() determina se um array contém um determinado elemento, retornando true ou false apropriadamente.

Parâmetros

searchElement - Elemento a buscar.

fromIndex - A posição no array de onde iniciará a busca pelo searchElement. por padrão, 0. (Opcional)

Sintaxe

nameArray.includes(searchElement);
Enter fullscreen mode Exit fullscreen mode

Retorno

O método includes() retorna true encontrar o elemento no array, caso contrário retorna false.

Exemplos

Encontrar o valor 5 no array

const numbers = [10, 6, 2, 85, 23, 1, 3];

const value = number.includes(5);
// value -> false
Enter fullscreen mode Exit fullscreen mode

Encontrar o valor 10 no array

const numbers = [10, 6, 2, 85, 23, 1, 3];

const value = number.includes(10);
// value -> true
Enter fullscreen mode Exit fullscreen mode

Método includes | Notion

Método includes | Youtube

Top comments (2)

Collapse
 
gabrielrufino profile image
Gabriel Rufino

Boa, meu queriiido!

Collapse
 
elianbecali profile image
Elian Becali

Valeu! 😉