Topic 2 - Basic Assignment ( Var )
Variables
Assigning variable could be done by this :
This month have 15 holidays.
Assigning variable could be done by this :
Var holiday = 15;
We concate in a stringreturn "This month have " + holiday + " holidays";
turn out to be like this :This month have 15 holidays.
Comments
Post a Comment