Solve programming problems in Javascript or TypeScript!
previous ~ next ~ JS Syntax HelpWarmup-1
--sumDouble
Given two int values, return their sum. Unless the two values are the same, then return double their sum.
Examples
- sumDouble(1, 2) → 3
- sumDouble(3, 2) → 5
- sumDouble(2, 2) → 8
(ctrl-enter)
xxxxxxxxxx
1
function sumDouble(a, b){
2
3
}