innowed,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
</head>
<body>
<input type="text" value="1">
<input type="text" value="2">
<input type="text" value="3">
<input type="text" value="4">
<input type="text" value="5">
<input type="text" value="6">
<input type="text" value="7">
<input type="text" value="8">
<input type="text" value="9">
<input type="text" value="10">
<script>
var inputs= document.querySelectorAll('input') // записывается 10 инпутов
function takeValue(el){
return el.value;
}
alert([].map.call(inputs,takeValue))
</script>
</body>
</html>