The native string is a built-in iterable object
string is iterable
the strings object key Symbol.iterator` is a function
use Array.from() to make an array out of any iterable
a string`s iterator
has a special string representation
iterator.next() returns an object according to the iterator protocol
the after-last call to iterator.next() says done=true, no more elements
Required Knowledge
Related Katas
Iterator
Difficulty Level
TBD
First Published
11 May 2015
Stats
5 tests to solve