JavaScript ES6 Notes
Def vars const = cannot redeclare, cannot changed value let = can change value, cannot redeclare let + const = if inside { } then it won’t work outside Concatination no need for + sign use backticks instead of quotes you can use single or double quotes inside backticks you can use variables inside of backticks like My name is ${name} Object Literals If you want to return an object you don’t need to do following ...