LiveScript icon indicating copy to clipboard operation
LiveScript copied to clipboard

"else if" to "ef" or other shorthand?

Open determin1st opened this issue 4 years ago • 3 comments

hey, what if livescript introduce shorthands to those basic statements? not a real issue, just a question to discuss maybe.

if a > b
  true
else if a < b
  true

may become

if a > b
  true
ef a < b
  true

comparisons are perfectly aligned - is it better for code readability? i've noticed new versions of php have both else if and elseif valid syntax constructs, also, python has elif statement that is perfectly aligned with else..

determin1st avatar May 30 '21 04:05 determin1st

comparisons are perfectly aligned - is it better for code readability?

better to use switch instead ?

sourcevault avatar Apr 23 '22 06:04 sourcevault

you mean empty switch, hmm.. ooke

determin1st avatar Jun 05 '22 16:06 determin1st

switch
| a > b => true
| b < a => false

punund avatar Jun 05 '22 20:06 punund