You are viewing a single thread.
View all comments 1 point
Why use
const max = (x, y) => x > y ? x : y
instead of
function max(x, y) { return x > y ? x : y }
?
Why use
const max = (x, y) => x > y ? x : y
instead of
function max(x, y) { return x > y ? x : y }
?
Post funny things about programming here! (Or just rant about your favourite programming language.)
4
Monthly active users
755
Posts
2.2K
Comments