Source
Prettify
xxxxxxxxxx
11
1
2
(
do
{});
3
4
let
a
=
do
{
5
if
(
x
>
10
)
{
6
'big'
;
7
}
else
{
8
'small'
;
9
}
10
};
11
Target: default (ES5)
xxxxxxxxxx
1
1
(
do
{});
2
var
a
=
do
{
3
if
(
x
>
10
)
{
4
'big'
;
5
}
else
{
6
'small'
;
7
}
8
};
Show Config
x
You need to enable JavaScript to run this app.