Xah Talk Show 2026-01-20 Ep747 random. fsharp, explore.

const ff = ((x) => x + 1);
// this is how you call a function
console.log( ff(3) )
// 4

// just like every function, you can also do it when the functions is not named
console.log( ((x) => x + 1)(3) )
// 4

console.log( (function (x) { return x + 1 })(3) )
// 4