scrimba
Introduction to JavaScript
Challenge: Numbers in JavaScript
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

Challenge: Numbers in JavaScript
AboutCommentsNotes
Challenge: Numbers in JavaScript
Expand for more info
index.js
run
preview
console
let example1 = parseInt("Hello 33 World 22");
let example2 = parseFloat('44 Dylan 33');
let example3 = 55.3333.toFixed(0);
let example4 = 200.0.toFixed(2);

console.log();
console.log();
console.log();
console.log();
Console
index.html
-2:25