(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| var imageAddr = "http://www.tranquilmusic.ca/images/cats/Cat2.JPG" + "?n=" + Math.random(); | |
| var startTime, endTime; | |
| var downloadSize = 5616998; | |
| var download = new Image(); | |
| download.onload = function () { | |
| endTime = (new Date()).getTime(); | |
| showResults(); | |
| } | |
| startTime = (new Date()).getTime(); | |
| download.src = imageAddr; |