Javascript examples for jQuery:Array
Using $.isArray() to check if an object is an array
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.js"></script> <script type="text/javascript"> $(window).load(function(){//from w w w . ja v a2 s . c o m var p = ['foo','']; if(!$.isArray(p)){ console.log('no'); }else{ console.log('yes'); } }); </script> </head> <body> </body> </html>