Observable JS script cell

Published

February 21, 2023

Observable JS Script cells

Infinite loop running on real time

i = {
  let i = 0;
  while (true) {
    yield ++i;
  }
}
i

x = 10
x + 5