function add(x: string, y: string): string; 
function add(x: number, y: number): number { 
	return x + y; 
} 
 
add(’1’,’2’);

Назад