![](https://cdn.lihkg.com/assets/faces/dog/touch.gif)
// 學it9打靚少少囉
function addMax50(a,b){
if((a+b)) >= 50) {
return 50;
}
return (a+b);
}
// 學it9打靚少少囉
function addMax50(a, b) {
if((a+b)) >= 50) {
return 50;
}
return (a+b);
}
// 你老母屄又要我加 feature
const addMax50 = (a, b) => a+b >= 50 ? 50 : a + b
// ; 都懶得加😡
const add = (a, b) => a + b
const max50 = (v) => Math.max(v,50)
const add50Max = function() {
return max50(add(...arguments))
}