- Tests
- It should make division correctly.
- If one of the paramaters is not a number, throw "invalid input" error.
- If the divisor is zero, throw "division by zero" error.
Case 2: A function which takes a string paramater and returns the pascal case of that string.(First letter of the each word should be uppercase)
- Tests
- It should convert given string to pascal case.
- It should return empty string if empty input is given.
- It should not convert conjunctions(and, or).