scrimba
Frontend Career Path
Essential JavaScript concepts
JS Mini Projects
Default Parameters
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

AboutCommentsNotes
Default Parameters
Expand for more info
index.js
run
preview
console
import { itemsBoughtArr } from '/itemsBoughtArr.js'

function calculateTotalCost(itemsBoughtArr, discount){

const total = itemsBoughtArr.reduce((total, currentItem)=>
total + currentItem.priceUSD, 0
)
return total - discount
}

console.log(calculateTotalCost(itemsBoughtArr))
Console
null
,
/index.html
-2:56