Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

quotes api

<script type="text/javascript">

const api_url ="https://zenquotes.io/api/quotes/";

async function getapi(url)
{
  const response = await fetch(url);
  var data = await response.json();
  console.log(data);
}

getapi(api_url);

</script>
Comment

PREVIOUS NEXT
Code Example
Javascript :: prettier semicolon false in javascript 
Javascript :: placeholder in angular 9 select with working required 
Javascript :: remove whitespace javascript 
Javascript :: how to make a bot react to own message js 
Javascript :: email validator javascript 
Javascript :: javascript remove all child elements 
Javascript :: thinkful 
Javascript :: Access data out of Axios .then vue.js 
Javascript :: jquery get relative position of element 
Javascript :: clear location state react 
Javascript :: how to generate package-lock.json from package.json 
Javascript :: H. Nazmul 
Javascript :: javascript give class to element 
Javascript :: regex min length max length 
Javascript :: javascript json string 
Javascript :: js add css class to element 
Javascript :: create label dynamically in javascript 
Javascript :: give div event listener functional component 
Javascript :: Ready check failed: NOAUTH Authentication required. 
Javascript :: uuid javascript 
Javascript :: como saber si un checkbox esta seleccionado en jquery 
Javascript :: bind and unbind jquery validation 
Javascript :: jquery innerhtml 
Javascript :: js redirect code 
Javascript :: getelementsbyname 
Javascript :: java superscript numbers 
Javascript :: select tag onchange 
Javascript :: create subcollection firestore 
Javascript :: nodejs express return image 
Javascript :: check if array does not contain value javascript 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =