No way a

No way a

Make a function that takes a string and returns that string with all instances of the letter 'a' removed. Must handle lowercase and uppercase letters.

function removeA(str) {
    // Your code here
}

console.log(removeA("Aye matey!"))  // displays "ye mtey!"

Hint: String methods