Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
if Statement | Conditional Statements
course content

Зміст курсу

Introduction to Dart

if Statementif Statement

if Statement

An if statement is a construct that allows you to execute a code block if a specific condition is met.

The condition is an expression that evaluates to a bool value, which can be true or false. If the condition is true, the block of code is executed. If the condition is false, the block of code is skipped.

Syntax

The syntax of the conditional operator is so simple: if keyword, condition in the parentheses ( ) and a code block in the curly brackets { }.

The open curly bracket { } opens the code block, and the close curly bracket symbol closes it.

Example 1

dart

main.dart

The condition was confirmed and the block of code worked.

Example 2

dart

main.dart

The condition was not confirmed, and the code block did not work.

Task

What should be put instead of "?" so the program works correctly?

Виберіть правильну відповідь

Все було зрозуміло?

Секція 3. Розділ 1
course content

Зміст курсу

Introduction to Dart

if Statementif Statement

if Statement

An if statement is a construct that allows you to execute a code block if a specific condition is met.

The condition is an expression that evaluates to a bool value, which can be true or false. If the condition is true, the block of code is executed. If the condition is false, the block of code is skipped.

Syntax

The syntax of the conditional operator is so simple: if keyword, condition in the parentheses ( ) and a code block in the curly brackets { }.

The open curly bracket { } opens the code block, and the close curly bracket symbol closes it.

Example 1

dart

main.dart

The condition was confirmed and the block of code worked.

Example 2

dart

main.dart

The condition was not confirmed, and the code block did not work.

Task

What should be put instead of "?" so the program works correctly?

Виберіть правильну відповідь

Все було зрозуміло?

Секція 3. Розділ 1
some-alt