scrimba
Learn Basic JavaScript
Multiple Identical Options in Switch Statements
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

Multiple Identical Options in Switch Statements
AboutCommentsNotes
Multiple Identical Options in Switch Statements
Expand for more info
index.js
run
preview
console
function sequentialSizes(val) {
var answer = "";

return answer;
}

// Change this value to test
console.log(sequentialSizes(1));
Console
"cat"
,
index.html
-1:53