Frontend & Backend - 2

yg kim·2021년 6월 29일
0

FrontBackEnd

목록 보기
2/3
post-custom-banner

비동기 호출

출처:https://learnjs.vlpt.us/async/

Promise, async/await

async function xxx (){
	return await fetch(xx)
    	...
}

타이머 API

setTimeout(callback, millisecond)
ex)
setTimeout(function () {
  console.log('1초 후 실행');
}, 1000);
// 123

node.js 모듈 사용법

const fs = require('fs');

fetch API 사용법

let url =
  "https://v1.nocodeapi.com/codestates/google_sheets/YbFMAAgOPgIwEXUU?tabId=최신뉴스";
fetch(url)
  .then((response) => response.json())
  .then((json) => console.log(json))
  .catch((error) => console.log(error));
profile
발전하고 싶은 사람
post-custom-banner

0개의 댓글