Topic 2 - Basic Assignment ( Var )

Variables

Assigning variable could be done by this :

Var holiday = 15;
We concate in a string

return "This month have " + holiday + " holidays";
turn out to be like this :

This month have 15 holidays.

Comments

Popular posts from this blog

Topic 1 - Basic Operatus