JavaScript Conditionals & Logical OperatorsWhat are conditionals? A conditional regulates behavior and decides whether or not certain bits of code can be executed. Types of conditionals Examples if statements if (12 < 5) { console.log(true); } else statements if (12 < 5) { console.log(true)...Aug 27, 2022·2 min read
VariablesWhat is a variable? You can use a variable to make several references to the same piece of data. Variables are defined in JavaScript using the var keyword. Variable declaration var variableName = value; EXAMPLE var name = "Zoe"; var postLiked = "fals...Jul 30, 2022·2 min read
Intro to InternetWhat is the internet? A global network of computers that can exchange information is what is commonly referred to as the Internet. Internet connection devices RAM Modem Browser Subscription to ISP Internet resources WWW E-mail Search engine Hyperl...Jul 26, 2022·2 min read
Understanding TechnologyWhat is technology? Technology can be defined as methods or ways of doing things and processes developed in various communities for providing basic needs and dealing with the physical environment. The systems and things of technology make living simp...Jul 24, 2022·2 min read
Introduction to HTMLWhat is HTML? Hyper Text Markup Language, or HTML, is a computer language that specifies how raw text should be presented and structured. Computers can understand raw text enclosed in HTML elements. Hypertext, often known as a hyperlink, is the text ...Jul 23, 2022·5 min read
Introduction to CSSWhat is CSS? Even while HTML is the foundation of every online page, on its own, it can be visually unpleasant. CSS, often known as Cascading Style Sheets, is a language used by web developers to style the HTML on a web page. CSS anatomy There are 2 ...Jul 22, 2022·3 min read
Web DevelopmentWhat is a website? Here's a question: what part of a browser do you see every time you do research, want to watch a video, or just about anything? A WEBSITE! Now, from that question, what IS a website? A website is a browser facility that displays qu...Jul 21, 2022·1 min read