Logo

dev-resources.site

for different kinds of informations.

Ternary operater

Published at
12/30/2024
Categories
ternaryoperator
Author
coder_d295cd12743e7d146c7
Categories
1 categories in total
ternaryoperator
open
Author
25 person written this
coder_d295cd12743e7d146c7
open
Ternary operater
void main() {
  print('Om Namah Shivay');
//ternary
  int age = 16;
  print(age == 16 ? 'age = 16' : 'invalid');
}

Enter fullscreen mode Exit fullscreen mode

I understood

Featured ones: