Let's checkout some shorthand tips and other tricks.Remember, some of these are not readable and might not seems relevant to use in a project, but my intensions here is to make you aware that these tricks exist.Assigning values to multiple variablesWe can assign values to multiple variables in one line with array destructuring.//Longhand let a, b, c; a = 5; b = 8; c = 12; //Shorthand let [a, b, c] = [5, 8, 12]; Assigning a default valueWe can use OR(||) short circuit evaluation or nullis...