admin管理员组

文章数量:1341390

I'm a beginner in JS. I'm writing a method that receives an input array and needs to check if it is empty. My first approach was using array === [] as a condition in the if statement inside the method, but it didn't work. It works when I write the condition array.length === 0. I thought they had the same meaning. Can someone explain why the former is not working? Thanks in advance.

I'm a beginner in JS. I'm writing a method that receives an input array and needs to check if it is empty. My first approach was using array === [] as a condition in the if statement inside the method, but it didn't work. It works when I write the condition array.length === 0. I thought they had the same meaning. Can someone explain why the former is not working? Thanks in advance.

Share asked Mar 2, 2016 at 14:14 teoweyteowey 1011 gold badge6 silver badges15 bronze badges 2
  • Check to see if the .length attribute is zero. – Pointy Commented Mar 2, 2016 at 14:15
  • Well, no, it does not "mean" the same thing. :) – deceze Commented Mar 2, 2016 at 14:17
Add a ment  | 

3 Answers 3

Reset to default 8

The parison

if (array === [])

pares the identity of two objects. One object is never equal to (the same as) another, different object, at least in the sense that "equality" is defined in JavaScript. Object parisons in JavaScript are always just a test to see whether some expression refers to some particular known object or not. The parisons do not "look inside" the pared objects.

One perhaps non-obvious detail is that the expression [] is not a reference to some global, conceptual "the empty array"; it is a request to create a brand new empty array. Thus it's also the case that the parison

if ([] === [])

will be false, because on both sides of the === operator a new, distinct array is created.

Because array === [] is paring if two objects are identical. And in JS two objects are identical when the two are exactly same. And the only way to check if two objects are exactly same is if they occupy the same space in memory.

And how do we do that? we check if both objects point to the same memory address. In other programming languages they call this memory address a pointer.

Because [] is creating an object on the fly it is a new object so the parison returns false.

On the other hand array.length === 0 is paring to primitive values (numbers) and in JS if two primitive values have the same content they are equal so it returns true.

The first check: array === [] checks if both arrays are of the same type (check) and if they are the same array. The reason the result is false is because:

  • although they are both an array
  • and although they are both empty,
  • they are not the same arrays (array is stored in location A, and [] is stored somewhere else.

This is caused by how javascript works with arrays and objects: javascript does not check content, it only checks whether they point to the same array or object in memory. That is why you have to use the second option.

More detailed examples:

// for strings and numbers, javascript checks CONTENT
let a = 'Bill';
let b = 'Bill';
console.log(a === b);   // TRUE

// for arrays and objects, javascript checks POINTERS
let a = ['Bill'];
let b = ['Bill'];
console.log(a === b);   // FALSE

// also:
var a = ['Bill'];
var b = a;
console.log(a === b);   // TRUE

a = ['Joe'];
console.log(a === b);   // TRUE
console.log(b);         // 'Joe'

本文标签: Javascript IF conditions quotarrayquot and quotarraylength0quotStack Overflow