Ad
Code
Diff
  • def 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
    • def add(a, b):
    • return a + b