if else

by Alex Fogarty

JavaScript

if (5 > 10) {
  alert ("It's bigger, duh");
} else {
  alert ("It's a wee bit smaller");
};