Coder Social home page Coder Social logo

async-practice-1's Introduction

Practice: Asynchronous Programming w/ Callback Functions

Directions

Abstracting Over XMLHttpRequest

  1. Write a function logData that takes a URL string, makes a GET request to that URL and logs the response to the console. Test your function by making a call to the JSON Placeholder API

  2. The above function is only able to log the AJAX call's response to the console. Let's make a function that is more flexible. Write a function called get that takes a URL string and a callback function as arguments. This function makes a GET request to the passed URL and then invokes the given callback function on the response. Once again, test your function by making a call to the JSON Placeholder API.

  3. Test the above function with an incorrect endpoint ('https://jsonplaceholder.typicode.com/postszz'). Since this request results in a 404 response, our function does not give us much helpful information back. Add a condition that checks for a response status of 404. For such responses, you should log, "404: Resource not found."

  4. Let's get some practice using APIs that require a key. We will use Open Weather Map. To use this API, you must sign up for an account to receive an API Key. Please sign up here.

  5. Test out your above functions using the Open Weather API.

async-practice-1's People

Contributors

rogbonna1 avatar thuyanduong avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.