« Back to Utilities
$("b").append( "" + $.isArray([]) );
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></script> <script> $(document).ready(function(){ $("b").append( "" + $.isArray([]) ); }); </script> </head> <body> Is [] an Array? <b></b> </body> </html>
Categories: Utilities/jQuery.isArray | API