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
// Names: Store the names of a few of your friends in a array called names. Print each person’s name by accessing each element in the list, one at a time.
export default function q11() {
console.log("\n"); // works as a br tag
// Define an array of names
let names: string[] = ["John", "Jane", "Jim", "Jasmine"];