First Javascript Console Application
Summary
- A statement in programming is a single instruction that performs a specific operation or action;
- In JavaScript, every statement needs to be ended with a semicolon (
;
); - The
console.log
statement can be used for displaying some output in the console; - An example of a
console.log
statement is:
1console.log("Hello World");
Everything was clear?
Thanks for your feedback!
SectionΒ 1. ChapterΒ 1
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Suggested prompts:
Can you explain more about what a statement is in programming?
What happens if I forget to add a semicolon at the end of a statement in JavaScript?
Can you show more examples of using console.log with different types of data?
Awesome!
Completion rate improved to 1.33
First Javascript Console Application
Swipe to show menu
Summary
- A statement in programming is a single instruction that performs a specific operation or action;
- In JavaScript, every statement needs to be ended with a semicolon (
;
); - The
console.log
statement can be used for displaying some output in the console; - An example of a
console.log
statement is:
1console.log("Hello World");
Everything was clear?
Thanks for your feedback!
SectionΒ 1. ChapterΒ 1