microsoft / TypeScript-Website-Localizations

A repo for the TypeScript Website localizations
Creative Commons Attribution 4.0 International
118 stars 132 forks source link

Update Any.ts #228

Open Assaff1 opened 2 months ago

Assaff1 commented 2 months ago

npx create-react-app my-app --template typescript

Assaff1 commented 2 months ago

function identity(arg: T): T { return arg; }

let numberIdentity = identity(42); // النوع هنا هو number let stringIdentity = identity("Hello"); // النوع هنا هو string