Would you like to clone this notebook?

When you clone a notebook you are able to make changes without affecting the original notebook.

Cancel

Check If String Is In JavaScript Array With Includes()

node v14.20.1
version: 1.0.0
endpointsharetweet
const fruits = ['apple', 'banana', 'orange']; console.log(fruits.includes('apple')); // Output: true console.log(fruits.includes('grape')); // Output: false
Loading…

no comments

    sign in to comment