JS

TypeScript Quiz - type of message parameter

15.

What is the type of the message parameter in the following function?

function showMessage(message: string) {
   console.log(message);
}

object

boolean

number

string