Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 353 Bytes

array_append.md

File metadata and controls

26 lines (14 loc) · 353 Bytes

Funzione array_append

Restituisce un array con il valore passato aggiunto alla fine.

Sintassi

array_append(array, value)

Argomenti

  • array un array
  • value il valore da aggiungere

Esempi

  • array_append(array(1,2,3),4) → array: 1,2,3,4

nota bene

--

osservazioni

--