index

id: 507771a91221e22afe71d299de0efc5d03aee06f3273ab2278f0e55ee09163af

id (bech32): note12pmhr2gjy83z4ln362vaurhut5p6acr0xfe6kgnc7rj4acy3vwhsfwhuyk

sig: 4f0bf6af5cadd306f5d8f813faac9db5467b3ea05514e5e36e841510ea38c480c6ca6b9914048164d632748058cfed782b36a240a12d62b2f55dd542b35e2062

created_at: 2025-12-07 21:24:56 +0900

created_at (unix time): 1765110296

content:

const f = (y) => (x) => x + 2 * y;
// const f = (y) => ((x) => x + 2 * y); // same
const g1 = f(1);
const g2 = f(2);
console.log(g1(1)); //=> 3
console.log(g1(2)); //=> 4
console.log(g2(1)); //=> 5
console.log(g2(2)); //=> 6

JSON