DEV Community

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

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.