Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Comparing response.text() and response.json() then JSON.stringify()
(version: 1)
Comparing performance of:
response.json() vs response.text()
Created:
one year ago
by:
Guest
Jump to the latest result
Tests:
response.json()
const showResult = result => console.log(result); const url = "https://www.googleapis.com/discovery/v1/apis"; fetch(url) .then((response) => response.json()) .then((jso) => JSON.stringify(jso)) .then(showResult)
response.text()
const showResult = result => console.log(result); const url = "https://www.googleapis.com/discovery/v1/apis"; fetch(url) .then((response) => response.text()) .then(showResult)
Rendered benchmark preparation results:
Suite status:
<idle, ready to run>
Run tests (2)
Previous results
Fork
Test case name
Result
response.json()
response.text()
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?