"use strict";
{

 let aaa = null;

 let foo = (bar) => {
  aaa = "bbb";
 }

}

↑見たいな構造のコードを見かけたんですが、
この一番外側の中括弧ってどういう意味やメリットがあるんでしょうか?