Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyTypeScripttype annotationsSingle-choice MCQ

What is the return type of `greet`, and is the explicit annotation valid?

function greet(name: string): void { return `Hi ${name}`; }