Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/main
/
.
/
test
/
fixtures
/
loop.js
blob: 1f093bdf574660f578a34289ac5dc42bb292b903 [
file
] [
log
] [
blame
] [
edit
]
var
t
=
1
;
var
k
=
1
;
console
.
log
(
'A message'
,
5
);
while
(
t
>
0
)
{
if
(
t
++
===
1000
)
{
t
=
0
;
console
.
log
(`
Outputted
message
#
$
{
k
++}`);
}
}
process
.
exit
(
55
);