Здравствуйте. Дан код. (
jsfiddle.net/lega911/nw8fy9y0/)<html>
<body>
<div al-app="main">
<div al-repeat="i in count">
<input type="text" al-value="result[$index]"/>
</div>
<button @click="count++">+</button>
<hr/>
{{result | json}}
<form name="new" onclick="lod(result)">
<button type="submit" class="btn btn-danger">send</button>
</form>
</div>
</body>
<script src="alight_0.12.last.min.js"></script>
<script>
function main(scope) {
scope.count = 1;
scope.result = [];
scope.load = function () {
console.log(scope.result);
}
}
</script>
<script>function lod(result) {
document.write(result);
}</script>
</html>
Нужно в функции lod вывести только четные элементы result. Подскажите, пожалуйста, как это можно сделать?