Getting Started
This chapter mainly explains how to add JavaScript code in HTML files, master the necessary basic grammar, and lay the foundation for future chapters.
JavaScript Statements
JavaScript statements are commands to the browser. What these commands do is tell the browser what to do. The end of a line is considered the ...
Date: 2022-11-16 06:11:51
JavaScript - Comments are important
The function of the comment is to improve the readability of the code, to help yourself and others read and understand the JavaScript code you writ...
Date: 2022-11-16 06:15:43
JavaScript - what is a variable?
From a programming point of view, a variable is a memory used to store certain values. We can regard a variable as a box. In order to distingu...
Date: 2022-11-16 06:50:52
JavaScript Conditional Statement (if...else)
The if...else statement is to execute the code when the specified condition is true, and execute the code after else when the condition is not true...
Date: 2022-11-16 06:54:41