function IF ELSE

PHOTO EMBED

Mon Jul 12 2021 12:33:08 GMT+0000 (Coordinated Universal Time)

Saved by @redflashcode #javascript

function min(a, b) {
  if (a < b) return a;
  else return b;
}

console.log(min(0, 10));
// → 0
console.log(min(0, -10));
// → -10
content_copyCOPY