JSFiddle - React, Tailwind, and code Playground

by John Doe

JavaScript

function min(a, b) {
    if(a > b) {
    console.log(a + ' больше ' + b);        
    }else{
    console.log(a + ' меньше ' + b);    
    }
    
};
min(2,5);
min(7,5);