Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<script src="https://static.jsbin.com/js/vendor/traceur.js"></script>
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <form id="my-form">
    <input type="text"/>
    <input type="text"/>
    <select><option></option></select>
  </form>
</body>
</html>
 
let form = document.querySelector('#my-form'),
    inputs = form.querySelectorAll('input'),
    selects = form.querySelectorAll('select');
let allTheThings = [form, ...inputs, ...selects];
console.log(allTheThings.map(n => n.nodeName));
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers