Chapter 2: JavaScript Console

A Complete Frontend Developer Textbook for Beginners (2023 Edition)

Thon Ly
Silicon Wat University

--

This is the textbook version of Lesson 2 of 100 from the Udemy video course: A Complete Frontend Developer Course for Beginners

Chapter 1: Hello World

Table of Contents

Overview

This lesson covers the following HTML, CSS, and JavaScript topics for the first time:

HTML

None.

CSS

None.

JS

  1. console.log()

Again, to get the most from my lecture, please create a new Codepen and code along with me!

Don’t just watch me code! 👀

Lecture

The UI window is awesome because it shows us what our users will see from the code we write.

UI Window => Users

The Console window is also an awesome tool because it allows us to print messages to a location that only coders can see.

Coders => Console Window

This is especially helpful when we write our JavaScript code. Therefore, in this lesson, we will explore the…

--

--