This course does not have any reviews. Your review could be the first one.
0%0%0%0%0%
Complete all chapters to get certificate
0%
First Acquaintance with Dart
This section will tell you about the advantages of Dart and why you should learn it.
We'll also write the first programs on Dart
About Dart
First application
Function print()
Comments
Basic math operations
Variables and data types
Numbers and text are an integral part of every application and mobile application.
This section will teach you how to work with these and other data types.
Data types
Variables
Properties of numbers
Bool, Equality and Relational Operators
Conditional statements
Previously, our code only worked linearly from top to bottom. In this section, we will learn how to control the code flow.
If statement
if...else statement
else if statement
Switch-Case statement
List and String
Every serious program has a lot of data. Data is usually stored in sets. In this section, we will explore data collections.
List
Indexes
String
What are methods?
String properties and methods
Loops
In programs, instructions often need to be repeated many times. To do it quickly, we can use loops. In this section, we will study cycles.