TypeScript
const width: number = 8;
const height: number = 5;

// Write area(w, h): number below - type w, h, and the return value as number.
function area(w: number, h: number): number {

}

const total = area(width, height);