JavaScript Refresher Flashcards
1
Q
var
A
creates variables
2
Q
const
A
constant values: variable’s value that don’t change
3
Q
let
A
variable values
4
Q
const myFnc = () => { ... }
A
arrow functions
• No issues with the “this” keyword
5
Q
How is a class created?
A
A class is created with the class keyword and a class can have both properties and methods.
class Person { name = 'Max'
}