{ } to define the start and end of a block of code.
Everything written inside these brackets is considered part of the block.
if (x>10) {
console.log("Number is greater than 10");
}
Here the curly brackets define the beginning and end of the code block executed when the condition is true.{ }.