Kurssisisältö
Introduction to JavaScript
Introduction to JavaScript
3. Performing Operations in JavaScript
Understanding Assignment OperatorsMathematical Operations in JavaScriptAssignment Operators in JavaScriptIncrement and Decrement OperatorsChallenge: Variable Operations PracticeComparison Operators in JavaScriptLogical Operators ExplainedChallenge: Compare Variables in JavaScriptConcatenating Strings in JavaScriptChallenge: Build Sentences with JavaScript
4. Controlling Program Flow with Conditional Statements
5. Looping Through Data in JavaScript
Understanding JavaScript Syntax
JavaScript follows a default syntax with parentheses, curly brackets, and semicolons.
Let's create a simple program and delve into its syntax. In JavaScript, you don't need to define a main function as required in languages like C, C++, Java, GoLang, etc. You can directly write your code:
console.log("Hello, user!");
In the example above, we've crafted a program that uses the console.log()
method to print Hello, user!
to the console.
Now, let's break down the syntax:
- To begin, we employ the
console.log()
method. This method serves the purpose of printing values in the console; - Following that, we place
"Hello, user!"
within this method, enclosed in parentheses()
; - The quotes (
"
or'
) serve as indicators to JavaScript, signifying thatHello, user!
is plain text and not a function or any other program-related keyword; - Lastly, the semicolon (
;
) functions as the command terminator, marking the conclusion of a command.
A program comprises a series of commands. If you intend to print text multiple times, you can utilize the semicolon ;
to signal the end of each command:
console.log("Command 1"); console.log("Command 2"); console.log("Command 3");
In the example above, the semicolon ;
serves as the separator for the three commands in our code:
- The first command is
console.log("Command 1")
followed by;
(indicating the end of this command); - Subsequent commands are structured similarly.
1. What is the purpose of the console.log()
method?
2. Why do we use quotes (" or ') around text like "Hello, user!"?
Oliko kaikki selvää?
Kiitos palautteestasi!
Osio 1. Luku 2