Показать сообщение отдельно
  #3 (permalink)  
Старый 10.06.2015, 12:28
Интересующийся
Посмотреть профиль Найти все сообщения от sogoodweather
 
Регистрация: 09.06.2015
Сообщений: 26

<html>
<head>
</head>
<body>

<div style="width: 10px; height: 20px; background: red"></div>
<div style="width: 10px; height: 20px; background: red"></div>
<div style="width: 10px; height: 20px; background: red"></div>


<script>

collection=[].map.call(document.querySelectorAll("div"), function(x){return x})

getIntWidth=function(x){return parseInt(x.style.width)}
sum=function(x, y){return x+y}

alert(
 collection.map(getIntWidth).reduce(sum)
)





</script>

</body>
</html>
Ответить с цитированием