Promise 에 대한 공부 및 정리
// 아래 설명을 바탕으로 한 예제 입니다. // https://developers.google.com/web/fundamentals/primers/promises function get(url) { // Return a new promise. return new Promise(function(resolve, reject) { // Do the usual XHR stuff var req = new XMLHttpRequest(); req.open('GET', url); req.onload = function() { // This is called even on 404 etc // so check the status if (req.status == 200) { // Resolve the promise wit..