c 23 razor for loop javascript

Solutions on MaxInterview for c 23 razor for loop javascript by the best coders in the world

showing results for - "c 23 razor for loop javascript"
Anissa
19 Sep 2018
1<script>
2	@for(int i = 0; i < 5; i++)
3	{
4	   <text>
5			// Use <text> node to call js inside razor
6			var that = @i
7		</text>
8	}
9</script>
10