scrimba
Frontend Career Path
Making websites interactive
Challenges
Convert string to number challenge
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

Convert string to number challenge
AboutCommentsNotes
Convert string to number challenge
Expand for more info
index.js
run
preview
console
// Challenge:
// The toFixed() method doesn't work anymore. Can you make it work?
// Google the error message if you're unsure about how to do it

const totalPrice = 420.69235632455
const btn = document.getElementById("buy-btn")
btn.textContent = `Buy €${ totalPrice.toFixed(2) }`
Console
/index.html
-2:24