Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
response.json() vs JSON.parse() tedfsad
(version: 0)
Comparing performance of:
response.json() vs JSON.parse()
Created:
one year ago
by:
Guest
Jump to the latest result
Script Preparation code:
var showResult = result => console.log(result); var url = "https://www.googleapis.com/discovery/v1/apis";
Tests:
response.json()
fetch(url).then(response => response.clone().json()).then(data => showResult(data));
JSON.parse()
fetch(url).then(response => response.text()).then(data => showResult(JSON.parse(data)));
Rendered benchmark preparation results:
Suite status:
<idle, ready to run>
Run tests (2)
Previous results
Fork
Test case name
Result
response.json()
JSON.parse()
Fastest:
N/A
Slowest:
N/A
Latest run results:
No previous run results
This benchmark does not have any results yet. Be the first one
to run it!
Comments
Confirm delete:
Do you really want to delete benchmark?