July 2017
Intermediate to advanced
454 pages
10h 1m
English
Void is actually nothing. It can be used as the return type of a function to declare that this function will not return any value:
function alertMessage(): void {
alert("This function does not return any value");
}
Read now
Unlock full access