How To Check for an Undefined/Null/Empty String Determine what is valid and use duck-typing to check for all three
How To Get the Last Item in a List in Python Use slice notation and learn to safeguard your application
Stop Using For Loops to Iterate Over Arrays Start replacing your vanilla for loops with the .forEach() method
How To Convert Objects to Arrays and Vice Versa in JavaScript Learn to use Object.entries() and Object.fromEntries()
Use the Walrus Operator to Assign and Print in One Line My new favorite use of the walrus operator in Python