613
Find yourself
(lemmy.ml)
Post funny things about programming here! (Or just rant about your favourite programming language.)
Why use
const max = (x, y) => x > y ? x : y
instead offunction max(x, y) { return x > y ? x : y }
?