what is 'array.includes' function in JavaScript

Array includes is a feature introduced in JavaScript es16 or es2017 it's similar to a pre existing function array.indexof() as compared to array.indexof() array.includes() function notably returns a true  boolean on matched value, and false if value not matched

Examples on how to use 'array.includes()' function

The first argument is the value to be looked upon in an array;

const arr = ['dogs', 'cats', 'snakes']

arr.includes('liars')
// false

arr.includes('snakes')
// true

arr.includes('lizards')
// false

I hope you get the concept

Comments

Popular posts from this blog

How to resume a suspended web audio api context

Tar basic commands to store and extract files

How to change a String's Case in JavaScript

FlappingBird JS13K Games

How to use fetch api submit an html form