Ad
Code
Diff
  • function add(a, b){
      return --a - ~b;
    }
    • // write a add function that doesn't use the plus symbol
    • function add(a, b){
    • return a + b;
    • }
    • // Make sure to view the test cases to see how this test fails
    • return --a - ~b;
    • }