Hacker News new | ask | show | jobs
by kstrauser 2 hours ago
I was prepared to read how its console logging function could reorder writes so that

  log('a');
  log('b');
could result in

  b
  a
or something, which would've been no less surprising.