Regex em Javascript para remover links

Tenho uma string em JavaScript e inclui uma marca com umhref. Eu quero remover todos os links o texto. Sei como remover o link e deixar o texto interno, mas quero removê-lo completament

Por exemplo

var s = "check this out <a href='http://www.google.com'>Click me</a>. cool, huh?";

Gostaria de usar um regex, então fico com:

s = "check this out. cool, huh?";

questionAnswers(10)

yourAnswerToTheQuestion