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