JavaScript Enumerator Items can be read using JavaScript for loop along with its supported methods to move the pointer position. In the previous tutorial we discussed about the JavaScript Enumerator object and its methods such as moveFirst(), item(), atEnd() and moveNext(). These methods enable you to read each item stored in the enumeration and move the pointer to the next position. atEnd() method returns the condition testing result as true if the pointer position is last item so that for loop exits after reading the last item value. moveFirst() method sets back the pointer position of JavaScript Enumerator to the first item in the collection. moveNext() method moves the pointer to the next item after each iteration.

Reading Enumerator Items

var myArray = new Array("sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday");

var collection = new Enumerator(myArray);

for (collection.moveFirst(); !collection.atEnd(); collection.moveNext()) {
    document.write(collection.item() + "<br />");
}

In the above JavaScript example collection.moveFirst() method has been used to initialize the pointer position of Enumerator. At the place of for loop condition test section collection.atEnd() method has been used that directs to exit the for loop when it returns true. collection.moveNext() has been used to increment the pointer position. Inside the JavaScript for loop iteration code block collection.item() method has been used that returns the item at the current pointer position.

No comments yet.

Leave a Comment

All fields are required. Your email address will not be published.

Recent JavaScript Tutorials

JavaScript if-else Ternary Operator

The JavaScript conditional ternary operator is considered as shorthand for if-else statement that is frequently used to return the result in single code statement. It takes three operands to return ...

JavaScript do…while Loop

do...while loop in JavaScript works like while loop in JavaScript the only difference is that do block executes at least once before while loop’s test condition. That’s why do block ...

JavaScript while Loop

while loop in JavaScript works same like for loop in JavaScript but in a little bit different manner. while loop runs until the condition is true and exits when the ...

JavaScript for Loop

for loop in JavaScript is most often used to execute a block of code with different value each time. So, to reduce the code length instead of adding number of ...

JavaScript switch-case Statement

To execute a single block of code satisfying a condition in case statement of JavaScript switch-case is used. break keyword is used in every case statement to exit the switch ...

Recent Comments