π Summary of key learnings from Section 2, Part 2 of "The Complete JavaScript Course"
π Topics: Strict Mode, Functions, Arrays, and Objects
'use strict'
Mode'use strict';
β Use it at the beginning of your scripts or inside functions for safer code.
const greet = function () {
console.log('Hello');
};
const sum = (a, b) => a + b;
this
keyword (inherited from parent scope).