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