JS
challenger
Home
Intermediate JavaScript
array methods
Array methods
array methods
map
filter
reduce
forEach
find
every
some
concat
slice
splice
push
pop
shift
unshift
sort
flat
indexOf
NEXT
Convert a Classic For Loop to a For...of Loop
CHALLENGE
Loop Through an Array with a For...of Loop
CHALLENGE
Find the First Even Number
CHALLENGE
Replace for loop with Array.find() to Get Object by Property Value
CHALLENGE
Find Attribute of First Active User
CHALLENGE
Double Every Number with map()
CHALLENGE
Refactor a For Loop Using map()
CHALLENGE
Return the Length of Each Word Using map
CHALLENGE
Map: Add a new property to each object
CHALLENGE
Map: Conditionally Set a Property in Array of Objects
CHALLENGE
Capitalize Words Starting With a Certain Letter
CHALLENGE
Mapping Numbers with Their Indices
CHALLENGE
Filter Out Numbers Less Than 10
CHALLENGE
Filter Strings by Length
CHALLENGE
Filter Even Numbers
CHALLENGE
Filter strings longer than a certain length
CHALLENGE
Filter Active Users
CHALLENGE
Check if Array Includes a Fruit
CHALLENGE
Keep Only Values Found in Both Arrays
CHALLENGE
Sum All Even Numbers in an Array Using forEach
CHALLENGE
Toggle Booleans into a New Array
CHALLENGE
Count Occurrences of a Value in an Array
CHALLENGE
Refactor a for loop to use Array.forEach()
CHALLENGE
Concatenate Uppercase Strings into a Word
CHALLENGE
Check if Any Value is Negative
CHALLENGE
Check if Any Element is a Boolean
CHALLENGE
Check if All Files are Images
CHALLENGE