u/TutsLR

For days I've been looking for a specific indie web site

The mentioned website as basically a chatroom by with a green ASCIIish style. I think there was music going on as wel, but I'm not sure. Do you know any sites like that?

reddit.com
u/TutsLR — 11 days ago

Zara failure

That wonderful AI Zara corrected me in a question about the difference between "var", "let" and "const" saying that "var" is block-scoped. I'm gonna ember some code and please tell me if Zara is being accurate in this case.

if (true) {
  if (true) {
    if (true) {
      var variable = 0;
    }
  }
}


console.log(variable);

// Output: 0

Run this JS code and please tell me if I'm just stupid or if Zara messed up.

reddit.com
u/TutsLR — 11 days ago