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