Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to check if array contains at least one empty elements. If any of the one element is empty then it will return false.

Example:

var my_arr = new Array(); 
my_arr[0] = ""; 
my_arr[1] = " hi ";
my_arr[2] = "";

The 0th and 2nd array elements are "empty".

share|improve this question
What do you mean by empty? – DuduAlul Aug 11 '10 at 11:34
By empty do you mean undefined or empty strings? – Telemachus Aug 11 '10 at 11:35
var my_arr = new Array(); my_arr[0] = ""; my_arr[1] = " hi "; my_arr[2] = ""; here the 0th and 2nd element is empty – san Aug 11 '10 at 11:36
2  
santanu, The code you just posted is PHP. Not JavaScript. – Johannes Jensen Aug 11 '10 at 11:37
2  
@santanu: I converted your code to JavaScript and added it to your question. – Andy E Aug 11 '10 at 11:38
show 4 more comments

7 Answers

up vote 2 down vote accepted

You have to check in through loop.

function checkArray(my_arr){
   for(var i=0;i<my_arr.length;i++){
       if(my_arr[i] === "")   
          return false;
   }
   return true;
}
share|improve this answer
done the trick, thanks a lot – san Aug 11 '10 at 11:53

You can check by looping through the array with a simple for, like this:

function NoneEmpty(arr) {
  for(var i=0; i<arr.length; i++) {
    if(arr[i] === "") return false;
  }
  return true;
}

You can give it a try here, the reason we're not using .indexOf() here is lack of support in IE, otherwise it'd be even simpler like this:

function NoneEmpty(arr) {
  return arr.indexOf("") === -1;
}

But alas, IE doesn't support this function on arrays, at least not yet.

share|improve this answer
Isn't this the reverse of what the OP asked for (returns true if the array has only empty elements, instead of returns false if any element is empty)? – Telemachus Aug 11 '10 at 11:44
Good call on the indexOf for array's. Now just let's hope someone from the IE dev team reads this and fix it ! – fredrik Aug 11 '10 at 11:46
+1 for the jsfiddle link – Satoru.Logic Aug 11 '10 at 11:47
@Telemachus - Good catch, I missed his explicit "which result is false" requirement, updated :) – Nick Craver Aug 11 '10 at 11:48
Wouldn't it be better if we make isEmpty function the second parameter of HasEmpty, and the arr[i] === "" implementation as default. – Satoru.Logic Aug 11 '10 at 11:52
show 2 more comments

You can try jQuery.inArray() function:

return jQuery.inArray("", my_arr)
share|improve this answer
4  
Including jQuery for this seems just a bit overkill, don'tcha think? – Nick Craver Aug 11 '10 at 11:44
@Nick Fairly often it's already used in the project – Vitalii Fedorenko Aug 11 '10 at 11:50
@Nick Craver - yes, overkill if this is the only reason for using jQuery. On the other hand, when using jQuery this is a good solution :-) – gnud Aug 11 '10 at 11:50
yes this will also do, Thanks – san Aug 11 '10 at 11:57
@Vitalii - Sometimes it's used, it's still a minority, my point was you should qualify this type of answer on a question not tagged jQuery with something like "If you're already using jQuery..." A novice finding this later and including jQuery for just this would be a bad thing. – Nick Craver Aug 11 '10 at 11:59
show 3 more comments

You could do a simple help method for this:

function hasEmptyValues(ary) {
    var l = ary.length,
        i = 0;

    for (i = 0; i < l; i += 1) {
        if (!ary[i]) {
            return false;
        }
    }

    return true;
}

//check for empty
var isEmpty = hasEmptyValues(myArray);

EDIT: This checks for false, undefined, NaN, null, "" and 0.

EDIT2: Misread the true/false expectation.

..fredrik

share|improve this answer
1  
Also checks for undefined, right? – Telemachus Aug 11 '10 at 11:54
Yes indeed, miss on my part. – fredrik Aug 11 '10 at 11:58
function containsEmpty(a) {
    return [].concat(a).sort().reverse().pop() === "";
}
alert(containsEmpty(['1','','qwerty','100'])); // true
alert(containsEmpty(['1','2','qwerty','100'])); // false
share|improve this answer

I see in your comments beneath the question that the code example you give is PHP, so I was wondering if you were actually going for the PHP one? In PHP it would be:

function hasEmpty($array)
{
  foreach($array as $bit)
  {
    if(empty($bit)) return true;
  }

  return false;
}

Otherwise if you actually did need JavaScript, I refer to Nick Craver's answer

share|improve this answer

Just do a len(my_arr[i]) == 0; inside a loop to check if string is empty or not.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.