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   ·   2379 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 16ms · UTC 16:06 · PVG 00:06 · LAX 09:06 · JFK 12:06
♥ Do have faith in what you're doing.