Skip to content

Instantly share code, notes, and snippets.

@areeng
Last active June 15, 2023 11:14
Show Gist options
  • Save areeng/57f6a3694f6cccb80e106c794887e0f0 to your computer and use it in GitHub Desktop.
Save areeng/57f6a3694f6cccb80e106c794887e0f0 to your computer and use it in GitHub Desktop.
let a = 2,
b = 3,
c;
if (a > 2) {
c = 'a більше 2';
} else if (b > 3) {
c = 'b більше 3';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment