let request = new Request('https://localhost:5001/api/values');
fetch(request)
.then((response) => response.json())
.then((json) => console.log(json));
Archived post: posted sometime between 2016 and 2022.
let request = new Request('https://localhost:5001/api/values');
fetch(request)
.then((response) => response.json())
.then((json) => console.log(json));