scrimba
Frontend Career Path
Essential JavaScript concepts
JS Mini Projects
The Rest Parameter
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
The Rest Parameter
Expand for more info
index.js
run
preview
console
function setPermissionLevel(permissionLevel, name1, name2, name3) {
console.log(`${name1} now has ${permissionLevel} level access.`)
console.log(`${name2} now has ${permissionLevel} level access.`)
console.log(`${name3} now has ${permissionLevel} level access.`)
}

setPermissionLevel('admin', 'Dave', 'Sally', 'Mike')
Console
"Dave now has admin level access."
,
"Sally now has admin level access."
,
"Mike now has admin level access."
,
/index.html
-5:23