Skip to main content

Dasar Dart

·60 words·1 min· 0
Mobile Developer Dart Dart PBO Flutter Dasar Dart
iCourse
Author
iCourse
~ lakukan yang terbaik, hidup hanya satu kali ~
Mobile Developer - This article is part of a series.
Part 2: This Article

Dasar-dasar dart #

  • Print
  • Input inline
  • Null safety
  • Variable
  • Komentar
  • Perkondisian
  • Perulangan

Print #

Hello World in Dart

 Print Data

Input inline #

Input text in terminal

 Input Inline

Null Safety #

Null Safety ditandai dengan “?” dan “!”

 Null Safety

Variable #

TypeData NamaVariable = Nilai;

 Variable

Komentar #

//

 Komentar

Perkondisian #

if else #

 if else

Ternary Operator #

 Ternary Operator

switch #

 switch

Perulangan #

for #

 for

while #

 while



Mobile Developer - This article is part of a series.
Part 2: This Article