Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

fetch thingy

fetch('http://example.com/songs')
	.then(response => response.json())
	.then(data => console.log(data))
	.catch(err => console.error(err));
    
 
PREVIOUS NEXT
Tagged: #fetch #thingy
ADD COMMENT
Topic
Name
1+6 =