expressions.js 365 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* multi-line expressions */
  2. req
  3. .shouldBeOne();
  4. too.
  5. more.
  6. shouldBeOneToo;
  7. const a =
  8. long_expression;
  9. b =
  10. long;
  11. b =
  12. 3 + 5;
  13. b =
  14. 3
  15. + 5;
  16. b =
  17. 3
  18. + 5
  19. + 7
  20. + 8
  21. * 8
  22. * 9
  23. / 17
  24. * 8
  25. / 20
  26. - 34
  27. + 3 *
  28. 9
  29. - 8;
  30. ifthis
  31. && thendo()
  32. || otherwise
  33. && dothis
  34. /**
  35. A comment, should be at 1
  36. */