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.
true
false
includes() takes the element to check and optionally the starting index.
includes()
some() takes a function as a parameter.
some()
hey @caused havea look into this one d7k.medium.com/js-includes-vs-some...
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Yes, they are kinda similar. They both check if a given element exists in the array or not. They both return
trueorfalseas output.includes()takes the element to check and optionally the starting index.some()takes a function as a parameter.hey @caused havea look into this one d7k.medium.com/js-includes-vs-some...