scrimba
The Ultimate JavaScript Bootcamp
Perform actions on all elements
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Perform actions on all elements
AboutCommentsNotes
Perform actions on all elements
Expand for more info
index.js
run
preview
console
const temperatures = [
{ degrees: 69, isRecordTemp: false },
{ degrees: 82, isRecordTemp: true },
{ degrees: 73, isRecordTemp: false },
{ degrees: 64, isRecordTemp: false }
]

// arr.every(() => {}) // true | false
Console
index.html
-10:36