After setting noImplicitAny to true in my tsconfig, I was surprised to find that I could still omit function return types. One instance is a getter function as shown below:
get name() {
return `${this.valueName} of ${this.suitName}`;
}
Inquiry 1: Can you identify the return type of the name() getter - is it any?
Inquiry 2: Assuming the return type is any, what is the reason behind this being permissible even with noImplicitAny set to true?