ForEach

From NSB App Studio
Revision as of 12:51, 4 August 2024 by Ghenne (talk | contribs) (→‎Description)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

ForEach(array, function)

Description

ForEach calls function on each element of array.

The BASIC implementation of this function is consistent with VBScript: element is a simple variable which gets the value of each element in the array sucessively.

If you're using JavaScript, the JavaScript specification is fully supported.

Example

// ForEach Example

var School;
School = new Array("Principal", "Mr. Garrison", "Chef");
School.forEach(listItem)

function listItem(item){
  NSB.Print(item);
}

Rem ForEach Example
Dim School
School = Array("Principal", "Mr. Garrison", "Chef")
ForEach(School, listItem)

Function listItem(item)
  Print item
Next

Output

Principal
Mr. Garrison
Chef

Related Items

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