forked from chakra-core/ChakraCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForLoop2.js
More file actions
21 lines (20 loc) · 775 Bytes
/
ForLoop2.js
File metadata and controls
21 lines (20 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
for (;;)
{
for(var a = 10; a >= 0; --a)
{
for(var b = 0; b < 10; b += 4)
{
for(var c = 0; c < 10; c += 3)
{
WScript.Echo(a,b,c);
}
b--;
b--;
}
}
break;
}