Add files via upload

This commit is contained in:
NodeMixaholic 2023-03-16 13:27:54 -05:00 committed by GitHub
parent a488cbeae7
commit f343e9a751
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,11 +37,17 @@ function evilTest() {
evil(calcPi) evil(calcPi)
} }
function wwwTest() {
let url = "https://cors.conchbrain.club/?https://en.wikipedia.org/wiki/Cat"
fetch(url)
}
function main() { function main() {
time(calcPi) time(calcPi)
time(log) time(log)
time(spamLog) time(spamLog)
time(evilTest) time(evilTest)
time(wwwTest)
console.log(`JS SCORE: ${totalTime} seconds`) console.log(`JS SCORE: ${totalTime} seconds`)
document.body.innerHTML = `<h1>JS SCORE:</h1></br></h2>${totalTime} seconds</h2>` document.body.innerHTML = `<h1>JS SCORE:</h1></br></h2>${totalTime} seconds</h2>`
} }