[][src]Module boa::builtins::array

The global Array object

Functions

concat

Array.prototype.concat(...arguments)

construct_array

Utility function for creating array objects: array_obj can be any array with prototype already set (it will be wiped and recreated from array_contents)

create_constructor

Create a new Array object

every

Array.prototype.every ( callback, [ thisArg ] )

fill

Array.prototype.fill ( value[, start[, end]] )

find

Array.prototype.find ( callback, [thisArg] )

find_index

Array.prototype.findIndex ( predicate [ , thisArg ] )

includes_value
index_of

Array.prototype.indexOf ( searchElement[, fromIndex ] )

join

Array.prototype.join ( separator )

last_index_of

Array.prototype.lastIndexOf ( searchElement[, fromIndex ] )

make_array

Create a new array

map

Array.prototype.map ( callback, [ thisArg ] )

pop

Array.prototype.pop ( )

push

Array.prototype.push ( ...items )

reverse

Array.prototype.reverse ( )

shift

Array.prototype.shift ( )

slice

Array.prototype.slice ( [begin[, end]] )

unshift

Array.prototype.unshift ( ...items )