UNPKG

declerck-my-exercises

Version:
12 lines 236 B
export const my_array_alpha = (str) => { if (typeof str == "string") { let i = 0; let j = []; while (str[i]){ j[i] = str[i] i++ } return j } else return 0 }