Anti Caps
Write a function called antiCaps, which accepts a string and manipulates it as follows. * Uppercase characters will become lowercase. * Lowercase characters will become uppercase. antiCaps('Hello') // hELLO antiCaps('racEcar') // RACeCAR antiCaps('bAnAnA') // BaNaNa Hint Here is a helper function that will return true if the letter is uppercase, and false