Angela Yu Javascript -

The actual she tells isn't about a narrative plot, but a teaching moment : She asks students to predict the output of:

// The "Angela Yu" classic example: let result = "Angela" + " " + "Yu"; // "Angela Yu" - normal angela yu javascript

This is a reference to a famous and rather terrifying (but educational) JavaScript story involving and her "JS is a weird language" lesson. The actual she tells isn't about a narrative

// But then she shows the weird part: let weird = "Angela" - "Yu"; // NaN (Not a Number) let weird2 = "Angela" * 1; // NaN let weird3 = [] + []; // "" (empty string) let weird4 = [] + {}; // "[object Object]" let weird5 = {} + []; // 0 (in some consoles, due to {} being interpreted as a block) // 0 (in some consoles