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
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
