ForEach: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
ForEach(''object'', ''function''  
ForEach(''object'', ''function'')


== Description ==
== Description ==

Revision as of 18:30, 3 October 2014

ForEach(object, function)

Description

ForEach calls a function on each member of an objects. Object can be arrays, collections, objects, classes or controls.

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

Related Items

Do...Loop, Exit, For...Next, While...Wend, For Each...Next