KIN_URUTONDE.injiza_ahabanza(arr, value) and KIN_URUTONDE.siba_ahabanza(arr) are both array methods to add or delete an element at the beginning of an array.
they're not mutators, they just return new value, changes are not reflected to the original array.
KIN_URUTONDE.injiza_ahabanza(arr, value)
andKIN_URUTONDE.siba_ahabanza(arr)
are both array methods to add or delete an element at the beginning of an array.they're not mutators, they just return new value, changes are not reflected to the original array.