Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
new fetch vs ajax call
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0
Browser:
Chrome 144
Operating system:
Windows
Device Platform:
Desktop
Date tested:
3 months ago
Test name
Executions per second
Ajax
11902.5 Ops/sec
Fetch
22455.4 Ops/sec
HTML Preparation code:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
Script Preparation code:
const showResult = (data) => { console.log(data); } var newUrl = "https://www.googleapis.com/discovery/v1/apis";
Tests:
Ajax
var request = $.ajax({ type: "GET", url: newUrl, success: res => showResult(res), data: null });
Fetch
fetch(newUrl) .then( (response) => { response.json().then((data) => { showResult(data); }); } ) .catch((err) => { console.log('Fetch Error :-S', err); });