© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Amro abd elhafeez
javascript
is string array are mutable
Junaid Shaikh
Frontend Developer
Hi Amro, Did you mean array made from string characters?
Like this?
const name = 'junaid'
const nameLetters = Array.from(name)
console.log(nameLetters) // [ 'j', 'u', 'n', 'a', 'i', 'd' ]