alick19

#1 Created at ... [Delete] [Delete and Lock User]
'use strict';

function max(a, b) {
    if (a > b) {
        return a
    } else {
        return b
    }
}

alert(max(15, 20));

  • 1

Reply