I just found out something like this which works in C# code.
foreach (var item in list)
{
Console.WriteLine(@item);
}
Can anyone explain how is this possible - I have not found any documentation in ECMA for this.
I just found out something like this which works in C# code.
foreach (var item in list)
{
Console.WriteLine(@item);
}
Can anyone explain how is this possible - I have not found any documentation in ECMA for this.