Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<select></select>
<script>
var select = document.getElementsByTagName("select");
select.item(0);
select[0];
select.namedItem("x")
select["x"]
</script>