Hacker News new | ask | show | jobs
by amadvance 1319 days ago
I do something similar also with if() and others:

  if (condition...
      && condition...
      && condition...
  ) {
1 comments

Same here but pushed it to force same column condition statement:

    if ((
      condition1
    ) && (
      condition2
    ) && (
      ...
    )) {
But that loses the table-like structure and makes it harder to read.