JSFiddle - React, Tailwind, and code Playground

JavaScript

var imageAddr = "http://simulation.talentimpact.com/Content/AssessmentResources/MgrAssessment/ja-JP/Scenario5/Resources/poster_blank.png" + "?n=" + Math.random();
var startTime, endTime;
var downloadSize = 94762;
var download = new Image();
download.onload = function () {
    endTime = (new Date()).getTime();
    showResults();
}
startTime = (new Date()).getTime();
download.src = imageAddr;

function showResults() {
    var duration = Math.round((endTime - startTime) / 1000);
    var bitsLoaded = downloadSize * 8;
    var speedBps = Math.round(bitsLoaded / duration);
    var speedKbps = (speedBps / 1024).toFixed(2);
    var speedMbps = (speedKbps / 1024).toFixed(2);
    alert("Your connection speed is: \n" + speedBps + " bps\n" + speedKbps + " kbps\n" + speedMbps + " Mbps\n");
}