let foo = 1;
console.log(foo);

function bar() {}
bar();

const { baz, ...rest } = data;
console.log(baz, rest);

try {
} catch (e) {}
