scrimba
Frontend Career Path
Essential JavaScript concepts
JS Mini Projects
Debugging: try...catch
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
Debugging: try...catch
Expand for more info
index.js
run
preview
console
function addTouristSurcharge(payment) {
console.log(payment + 10)
}

addTouristSurcharge(60)
Console
70
,
/index.html
-4:39