Check if Array Doesn't contain a Value in JavaScript

avatar
Borislav Hadzhiev

Last updated: Mar 2, 2024
4 min

banner

# Table of Contents

  1. Check if Array Doesn't contain a Value in JavaScript
  2. Check if Array Doesn't contain a Value using indexOf()
  3. Check if an object is not contained in an array in JavaScript

# Check if Array Doesn't contain a Value in JavaScript

Use the logical NOT (!) operator to negate the call to the includes() method to check if an array doesn't contain a value.

The negated call to the Array.includes() method will return true if the value is not in the array and false otherwise.

index.js
const arr = ['a', 'b', 'c']; const notIncludesD = !arr.includes('d'); console.log(notIncludesD); // ๐Ÿ‘‰๏ธ true const notIncludesC = !arr.includes('c'); console.log(notIncludesC); // ๐Ÿ‘‰๏ธ false if (notIncludesC) { console.log('โœ… the value c is NOT contained in the array'); } else { // ๐Ÿ‘‡๏ธ this runs console.log('โ›”๏ธ the value c is contained in the array'); } // --------------------------------------- // โœ… Check if an object is not contained in an array const arr2 = [{id: 1}, {id: 2}, {id: 3}]; const notContained = arr2.every(obj => { return obj.id !== 4; }); console.log(notContained); // ๐Ÿ‘‰๏ธ true

check if array does not contain value

The code for this article is available on GitHub

We used the logical NOT (!) operator to negate the calls to the Array.includes() method.

This approach allows us to check if a specific value is not contained in the array.

Our first example checks if the value d is not contained in the array and returns true.

index.js
const arr = ['a', 'b', 'c']; const notIncludesD = !arr.includes('d'); console.log(notIncludesD); // ๐Ÿ‘‰๏ธ true const notIncludesC = !arr.includes('c'); console.log(notIncludesC); // ๐Ÿ‘‰๏ธ false

checking if the value is not contained in the array

The string c is contained in the array, so the expression returns false.

Here are some more examples of using the logical NOT (!) operator.

index.js
console.log(!true); // ๐Ÿ‘‰๏ธ false console.log(!false); // ๐Ÿ‘‰๏ธ true console.log(!'hello'); // ๐Ÿ‘‰๏ธ false console.log(!''); // ๐Ÿ‘‰๏ธ true console.log(!null); // ๐Ÿ‘‰๏ธ true

using logical not operator

You can imagine that the logical NOT (!) operator first converts the value to a boolean and then flips the value.

When you negate a falsy value, the operator returns true. In all other cases, it returns false.

The falsy values in JavaScript are: null, undefined, empty string, NaN, 0 and false.

If you have to perform the test often, define a reusable function.

index.js
function notIncludes(array, value) { return !array.includes(value); } const arr = ['a', 'b', 'c']; console.log(notIncludes(arr, 'c')); // ๐Ÿ‘‰๏ธ false console.log(notIncludes(arr, 'd')); // ๐Ÿ‘‰๏ธ true console.log(notIncludes(arr, 'z')); // ๐Ÿ‘‰๏ธ true
The notIncludes() function takes an array and a value as parameters and checks if the value is not contained in the array.

The function returns true if the value is not contained in the array and false otherwise.

You can also use the indexOf() method to check if a value is not contained in an array.

# Check if Array Doesn't contain a Value using indexOf()

This is a two-step process:

  1. Use the indexOf() method to get the index of the value in the array.
  2. If the method returns -1, the array doesn't contain the value.
index.js
const arr = ['a', 'b', 'c']; if (arr.indexOf('d') === -1) { // ๐Ÿ‘‡๏ธ this runs console.log('The value d is NOT contained in the array'); } else { console.log('The value d is contained in the array'); } console.log(arr.indexOf('c')); // ๐Ÿ‘‰๏ธ 2 console.log(arr.indexOf('z')); // ๐Ÿ‘‰๏ธ -1

check if array does not contain value using indexof

The code for this article is available on GitHub

The Array.indexOf() method returns the index of the first occurrence of the supplied value in the array.

If the value is not contained in the array, the method returns -1.

Our if statement checks if the Array.indexOf() method returned -1.

If the method returned -1, then the value is not contained in the array.

If you have to perform the test often, define a reusable function.

index.js
function notIncludes(array, value) { return array.indexOf(value) === -1; } const arr = ['a', 'b', 'c']; console.log(notIncludes(arr, 'c')); // ๐Ÿ‘‰๏ธ false console.log(notIncludes(arr, 'd')); // ๐Ÿ‘‰๏ธ true console.log(notIncludes(arr, 'z')); // ๐Ÿ‘‰๏ธ true

The function takes an array and a value as parameters and returns true if the value is not contained in the array.

If you need to check if an object is not contained in an array, use the Array.every() method.

# Check if an object is not contained in an array in JavaScript

To check if an object is not contained in an array:

  1. Use the Array.every() method to iterate over the array.
  2. Check if each object doesn't have a property equal to the specific value.
  3. The every() method will return true if the object is not in the array.
index.js
const arr2 = [{id: 1}, {id: 2}, {id: 3}]; const notContained = arr2.every(obj => { return obj.id !== 4; }); console.log(notContained); // ๐Ÿ‘‰๏ธ true if (notContained) { console.log('The object is NOT contained in the array'); } else { console.log('The object is contained in the array'); }

check if object is not contained in an array

The code for this article is available on GitHub

The function we passed to the Array.every() method gets called with each element of the array.

If all invocations of the callback function return a truthy value, then the Array.every() method returns true, otherwise, false is returned.

On each iteration, we check if the current object doesn't have a specific value and return the result.

If the callback function we passed to the Array.every() method returns a falsy value, then Array.every() short-circuits also returning false.

If the Array.every() method returns true, then the object isn't contained in the array.

If the method returns false, the object is contained in the array.

I wrote a book in which I share everything I know about how to become a better, more efficient programmer.
book cover
You can use the search field on my Home Page to filter through all of my articles.

Copyright ยฉ 2024 Borislav Hadzhiev