Three quick JavaScript tips you can start using today: const, array concat, and JSON.parse vs. JS objects
Use const whenever possibleconst sets constant variables in JavaScript. This is useful when you don't want variables to be able to change! Below, we use var to set up a name variable. We can change that variable at any time after initialization and assignment: var name = "Kristian" name = "Someone" console.