Referencia append()

append()

Adds a value to the end of an array. Extends the length of the array by one. Maps to Array.push().

Ejemplos

Sintaxis

append(array, value)

Parámetros

array

Array to append

value

to be added to the Array

Notice any errors or typos? Please let us know. Please feel free to edit src/utilities/array_functions.js and open a pull request!

Referencias Relacionadas