Answers for "foreach tutorial"

0

ForEach loop

const a = ["a", "b", "c"];
a.forEach((entry) => {
    console.log(entry);
});
Posted by: Guest on July-15-2021
-1

how to use foreach

// In the case of swiftui's foreach
// Make sure to import swiftui first as foreach is not native

let names = ["ken","ben"]

ForEach(names) { name in
	Text(name)
}

// this loops through the names, and creates a text view for each name
// so it is something like

Text("ken")
Text("ben")
Posted by: Guest on August-12-2021
-2

foreach loop

foreach ($array as $value)
{

  code to be executed;

 }
Posted by: Guest on June-08-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language