January 2011
Intermediate to advanced
224 pages
5h 43m
English
Coming back to those cats, we now know that an array would be a good way to store the
archive of emails. If we assume that we have an array of email strings in the variable
ARCHIVE, going over all the emails is simple now:
for (var i = 0; i < ARCHIVE.length; i++) {
var email = ARCHIVE[i];
// Do something with this email...
}We have also decided on a way to represent the set of cats that are alive. The next problem, then, is to find the paragraphs in an email that start with “born” or “died.”
The first question that comes up is what exactly a paragraph is. In this case, the string value itself can’t help us much: JavaScript’s concept of text does not go any deeper than the “sequence of ...
Read now
Unlock full access