Jul 22, 2024
console.log('Hello, world!').let, const (modern way); var (old way).=, +=, -=, etc.>, <, >=, <=, == (loose equality), === (strict equality).&& (AND), || (OR), ! (NOT), ?? (Nullish Coalescing).push (end), unshift (beginning), splice (middle).pop (end), shift (beginning), splice (middle).indexOf, lastIndexOf, includes (primitives), find, findIndex (objects).map, filter, reduce, some, every.concat, Spread Operator.join (array to string), split (string to array).sort, reverse.arguments object.try-catch blocks, throwing and capturing errors.this Keyword: Context of function execution, bind method to set this.Extra: The course also touches on beginner coding paradigms, tips for making code more readable and maintainable, and encourages good coding practices.