ForEach: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 1: | Line 1: | ||
ForEach('' | ForEach(''array'', ''function'') | ||
== Description == | == Description == | ||
ForEach calls ''function'' on each | ForEach calls ''function'' on each element of ''array''. | ||
== Example (Basic) == | == Example (Basic) == | ||
Revision as of 19:52, 9 October 2014
ForEach(array, function)
Description
ForEach calls function on each element of array.
Example (Basic)
Rem ForEach Example
Dim School
School = Array("Principal", "Mr. Garrison", "Chef")
ForEach(School, listItem)
Function listItem(item)
Print item
Next
Example (JavaScript)
// ForEach Example
var School;
School = new Array("Principal", "Mr. Garrison", "Chef");
School.forEach(listItem)
function listItem(item){
NSB.Print(item);
}
Output
Principal Mr. Garrison Chef