SuperKid 2020. 3. 18. 16:54

[Dart] Variables

 

[Ko]

 - 변수 설정 형식 : var myName = ‘aaa’;

 - var : 변수를 넣을 박스

 - myName : 변수를 넣은 박스의 이름

 - = : 데이터를 할당

 - ; : 코드 라인의

 - ‘aaa’ : 변수에 넣을 데이터, dart에서는보다는 일반적으로 사용함.

 

===============================================================

 

[En]

 - Variable setting format: var myName = ‘aaa’;
 - var: Box to put variable
 - myName: The name of the box containing the variable
 - =: Allocate data
 - ; : End of line of code
 - ‘Aaa’: Data to be put into a variable, in dart, ‘is generally used rather than“.