const A = 'A' const B = 3 function add(a, b) { return a + b } function max(a, b) { return a > b ? a : b } function min(a, b) { return a < b ? a : b }