Skip to content

Instantly share code, notes, and snippets.

@itkq
Created September 28, 2016 09:29
Show Gist options
  • Save itkq/1eb203177cab0d001c6b9b3775ca8a7a to your computer and use it in GitHub Desktop.
Save itkq/1eb203177cab0d001c6b9b3775ca8a7a to your computer and use it in GitHub Desktop.
教務Webで平均点計算
c=0;s=0;Array.prototype.forEach.call(document.querySelectorAll('.tableSet01 tr'),function(e,i){t=e.childNodes[6].innerText;if(isFinite(t)){s+=Number(t);c++}});alert(s/c);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment