13 Flashcards

(3 cards)

1
Q

const x;

A

> error !
(variables declared with const need an initial value)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

When to use let, const and var?

A
  • use const by default
  • use let when you’re really sure that the variable needs to change in the future
  • avoid var!
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

job = ‘programmer’

A

you should always declare variables with let or const

How well did you know this?
1
Not at all
2
3
4
5
Perfectly