You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Famous Quote 2: Repeat Exercise 4, but this time store the famous person’s name in a variable called famous_person. Then compose your message and store it in a new variable called message. Print your message.
function q5 (){
let famous_person: string = "Quaid-e-Azam Muhammad Ali Jinnah";
let Message: string = `\"Unity, Faith, and Discipline, the three great principles which I have given out to you will lead us all to success.\" - ${famous_person}`;