Giter VIP home page Giter VIP logo

pokebowl-backend's Introduction

Pokebowl Backend

We'll be exploring a 2D Array to see how that feels before we start using them in a bigger app.

Workflow

  • You'll be running jest --watch-all, but working in two separate files, one per function. Each one has a corresponding test file you can check out to see how each test is working.
  • Don't forget to check out the pokemon.js file to see what our data looks like!
  • And this README looks a LOT better on GitHub, so check it out there.

Tasks

You'll only need two functions to pass these tests.

  • getRow - given a string, looks through the pokemon array and returns the sub-array that contains it
getRow('pikachu') //-> ['pikachu', 'https://pokeapi.co/api/v2/pokemon/25/']

getRow('charmander') //-> ['charmander', 'https://pokeapi.co/api/v2/pokemon/4/']
  • getUrl - given a row sub-array (like the example outputs above), returns the URL from it.
getUrl(['pikachu', 'https://pokeapi.co/api/v2/pokemon/25/']) //-> 'https://pokeapi.co/api/v2/pokemon/4/'

getUrl(['charmander', 'https://pokeapi.co/api/v2/pokemon/4/']) //-> 'https://pokeapi.co/api/v2/pokemon/4/'

Hints

  • Pay careful attention to what type of data your inputs and outputs are supposed to be!
  • Also important: getRow will need to pull in the pokemon data from pokemon.js. That's our "database"!

pokebowl-backend's People

Contributors

abbreviatedman avatar prem-0009 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.