본문으로 바로가기

map, apply 메소드 활용


javascript
var maxHeight = Math.max.apply(null, $("div.panel").map(function (){
    return $(this).height();
}).get());

var heights = $("div.panel").map(function (){
            return $(this).height();
        }).get(),

maxHeight = Math.max.apply(null, heights);