Kevin Powell - CommunityKP-C
Kevin Powell - Community4y ago
49 replies
Aozen

anyone can help me find the mdn resource for return types? example is

function add(x: number, y: number): number {
return x + y;
}

let myAdd = function (x: number, y: number): number {
return x + y;
};

so basically i forgot what those were called type casting or type coercion or other
Was this page helpful?