blob: e27b07ed6a89cc9715d260f0336ead3a183b37f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html>
<body>
<script>
var obj = {a: 3, next: 1};
var to_iterate = Object.create(obj);
var enumerate = { 0: 0, "hi": "there" };
function func () {};
var o = {};
var a = [1];
</script>
</body>
</html>
|