var Name: string[] =["Ali","Zoha","Kinza"]; // give string store on 0 index of Name array console.log(Name[0]); // give string store on 1 index of Name array console.log(Name[1]); // give string store on 2 index of Name array console.log(Name[2]);
To embed this project on your website, copy the following code and paste it into your website's HTML: