Code Monkey home page Code Monkey logo

javascript-array-functions-practice's Introduction

Quick JavaScript Array Functions Practice

Want to learn how to use JavaScript array functions like map, reduce, filter, etc? Use this worksheet and the corresponding videos to figure out how!

Sample Data

Here's a sample piece of Star Wars data from the Star Wars API.

const characters = [
    {
        name: 'Luke Skywalker',
        height: '172',
        mass: '77',
        eye_color: 'blue',
        gender: 'male',
    },
    {
        name: 'Darth Vader',
        height: '202',
        mass: '136',
        eye_color: 'yellow',
        gender: 'male',
    },
    {
        name: 'Leia Organa',
        height: '150',
        mass: '49',
        eye_color: 'brown',
        gender: 'female',
    },
    {
        name: 'Anakin Skywalker',
        height: '188',
        mass: '84',
        eye_color: 'blue',
        gender: 'male',
    },
];

MAP

  1. Get an array of all names
  2. Get an array of all heights
  3. Get an array of objects with just name and height properties
  4. Get an array of all first names

REDUCE

  1. Get the total mass of all characters
  2. Get the total height of all characters
  3. Get the total number of characters in all the character names
  4. Get the total number of characters by eye color (hint. a map of eye color to count)

FILTER

  1. Get characters with mass greater than 100
  2. Get characters with height less than 200
  3. Get all male characters
  4. Get all female characters

SORT

  1. Sort by name
  2. Sort by mass
  3. Sort by height
  4. Sort by gender

EVERY

  1. Does every character have blue eyes?
  2. Does every character have mass more than 40?
  3. Is every character shorter than 200?
  4. Is every character male?

SOME

  1. Is there at least one male character?
  2. Is there at least one character with blue eyes?
  3. Is there at least one character taller than 200?
  4. Is there at least one character that has mass less than 50?

javascript-array-functions-practice's People

Contributors

jamesqquick 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.