> Using the split() method
> let characters = message.split('');
> console.log(characters.length);
> Using the slice() method
> let characters = message.slice();
> console.log(characters.length);
Is this a joke? Or just a way to collect Medium reactions?