variables Flashcards
1
Q
first step to creating variable
A
var
2
Q
variable names needs to be
A
single word
3
Q
start with
A
letter
4
Q
value is after
A
=
5
Q
make a variable that stores a day and prints it
A
var day="friday" print(day)
6
Q
values need to be
A
same type