DEV Community

Discussion on: 15 must-know JavaScript array methods in 2020

Collapse
 
caused profile image
Gustavo

The only difference between some() and includes() is the parameter (the former is a function, the latter an element) or Did I miss something?

Collapse
 
ibrahima92 profile image
Ibrahima Ndaw

Yes, they are kinda similar. They both check if a given element exists in the array or not. They both return true or false as output.

includes() takes the element to check and optionally the starting index.

some() takes a function as a parameter.