scrimba
JavaScript Bootcamp Challenges
Challenge: Types
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: Types
AboutCommentsNotes
Challenge: Types
Expand for more info
index.js
run
preview
console
// Challenge 1: truthy/falsy values

console.log("7" * "5")

console.log("Hello" + 0)
Console
"75"
,
"Hello0"
,
/index.html
LIVE