3 lines
80 B
JavaScript
3 lines
80 B
JavaScript
h = {"one":1, "two":2, "three":3}
|
|
for (x in h) print(x);
|
|
for (y of h) print(y);
|