Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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!

NotificationsYou must be signed in to change notification settings

kvdos/javascript-array-functions-practice

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

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!

Videos:https://www.youtube.com/playlist?list=PLDlWc9AfQBfZGZXFb_1tcRKwtCavR7AfT

Sample Data

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

constcharacters=[{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?

About

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!

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript92.5%
  • HTML7.5%

[8]ページ先頭

©2009-2025 Movatter.jp