function double(x) { return x * 2; } // Traditional way console.log(double(2)) // 4 const double = x => x * 2; // Same function written as an arrow function with implicit return console.log(double(2)) // 4