Created
September 28, 2016 09:29
-
-
Save itkq/1eb203177cab0d001c6b9b3775ca8a7a to your computer and use it in GitHub Desktop.
教務Webで平均点計算
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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