Clone and edit this document
Runkit
Runkit
home page
user forum
new notebook
clone notebook
download notebook
support & documentation
log in
sign up
new notebook
help & feedback
clone this notebook
download this notebook
Sign In
Sign Up
Search for a value in a part of a JavaScript array
node v14.20.1
version:
1.0.0
endpoint
share
tweet
const numbers = [1, 2, 3, 4, 5]; console.log(numbers.includes(3, 3)); // Output: false console.log(numbers.includes(3, 2)); // Output: true
Loading…
no comments
sign in
to comment