let a = 1;
let b = 1;
$: if (a > 0) { b += 1 }
$: if (b > 0) { a += 1 }
With React's useEffect one can easily falls into the trap of an infinite re-rendering: let a = 1;
let b = 1;
useEffect(() => {
b += 1;
}, [a]);
useEffect(() => {
a += 1;
}, [b]);
Great framework are supposed to prevent this kind of loophole. Location: Indonesia
Remote: Yes
Willing to relocate: Yes
Technologies: JavaScript, TypeScript, React, Svelte, Rust, Python, Pandas, PostgreSQL, Docker
Résumé/CV: Available upon request
Email: hiagusputradana at gmail
I’m the creator of Rust Explorer[1], a fast Rust playground that supports the top 10k crates.