Files
30-seconds-of-code/snippets/toCharArray.md
Isabelle Viktoria Maciohsek 8bf67754ce Make expertise a field
2022-03-01 20:21:45 +02:00

388 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
String to character array string beginner 2020-10-08T15:17:22+03:00 2020-10-08T15:17:22+03:00

Converts a string to an array of characters.

  • Use the spread operator (...) to convert the string into an array of characters.
const toCharArray = s => [...s];
toCharArray('hello'); // ['h', 'e', 'l', 'l', 'o']