Menu
×
×
Correct!
Exercise:Create a function that specifically does not return a value:
function myFunc(): void {
console.log("Learning is Fun!");
}
Not CorrectClick here to try again. Correct!Next ❯myFunc(): { console.log("Learning is Fun!"); } |