Skip to content

Instantly share code, notes, and snippets.

@Ruhulcse
Created January 8, 2022 17:44
//bad
a > b ? number = a : number = b;
//Good
number = a > b ? a : b;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment