1
0

spaceinvaders-utils.js 293 B

123456789101112
  1. function getAliensMidHeight() {
  2. var higherAlien = Math.max.apply( null,
  3. $(".alien").map(function() {
  4. return $(this).y();
  5. }).get() ),
  6. lowerAlien = Math.min.apply( null,
  7. $(".alien").map(function() {
  8. return $(this).y();
  9. }).get() );
  10. return (higherAlien + lowerAlien) / 2;
  11. }