HTML (short for Hypertext Markup Language) is what web designers use to mark up and describe the parts on a web page so that your browser can read the website correctly. Note: This is a summary of what I learned from the HTML section of the Skillcrush 101 course. How do you write HTML? HTML […]
JavaScript Functions
Functions are the hardest thing you’ll learn in JavaScript.
JavaScript Conditionals & Operators
Notes on what I learned from the JavaScript section of The Complete Web Developer in 2018: Zero to Mastery class on Udemy Conditionals Q: What are conditional expressions?A: Conditional expressions perform different computations or actions depending on whether a specified Boolean condition evaluates to true or false. Types of Conditionals IF statement var name = prompt(“What is your […]