ECMAScript is another name for javascript.
var square = function(x) { return x * x }
import * as moduleName from "..."; export const Foo
- arrow function with ( ( ) => { }) syntax
const square = x => x * x;
const square = x => (x * x);
let { a, b } = object;