2022-01-12 14:58:42 -08:00

8 lines
150 B
JavaScript

.
.
.
let soliloquy = "To be, or not to be, that is the question:";
Array.from(soliloquy).forEach(function(character) {
console.log(character);
});