
JavaScript::Code::Array - A JavaScript Array Type

#!/usr/bin/perl
use strict;
use warnings;
use JavaScript::Code::Array;
my $array = JavaScript::Code::Array->new( elements => [] );

Add one or more element(s) to the end of array.
Gets or sets the value on the given index.
Dies if the index is out of range.
Returns the number of elements stored in the array.


Sascha Kiefer, esskar@cpan.org

This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.