JavaScript <-> Object Pascal | Block statement
JavaScript
{ }
Description
{}
{statement}
{statement statement}
Input
- statement - statements
Examples
JavaScript
Block statement the possible of use:y=10;
if (x>1)
{
x=1;
y=y-1;
}
while (y>1)
{
x++;
y--;
}
.
Block statement in another programming language:
Differences to: