scrimba
Frontend-utvikling JS #6
Sette inn elementer et sted inne arrayet
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

Sette inn elementer et sted inne arrayet
AboutCommentsNotes
Sette inn elementer et sted inne arrayet
Expand for more info
index.js
run
preview
console

const tallene = [1,2,3,4,5,6];



console.log(tallene);

Console
[
1
,
2
,
3
,
4
,
5
,
6
]
,
index.html
-1:07