mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
13 lines
264 B
HTML
13 lines
264 B
HTML
<!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>
|