Jase's recent timeline updates
Jase

Jase

V2EX member #404207, joined on 2019-04-22 19:21:42 +08:00
Jase's recent replies
function fibonacci(n) {
if (n === 1) {
return 1;
}

if (n === 2) {
return 1;
}

return fibonacci(n - 1) + fibonacci(n - 2);
}
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   5711 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 21ms · UTC 07:00 · PVG 15:00 · LAX 00:00 · JFK 03:00
♥ Do have faith in what you're doing.