Language - Anonymous Block

About

An anonymous block is a block of code without name that then cannot be called (ie reused).

The statements are between block character such as: ( and ) or { and }

Example

An anonymous block in java-script:

{ 
     y = 2; 
     x = 2 + y;
     console.log( x ); // 4
}