type GreetingMessage = 'Hello World!' | 'Habari dunia!' | 'Uhoro the!';
const greet = (possibleGreetings: GreetingMessage[]) => {
const message = possibleGreetings[Math.floor(Math.random() * possibleGreetings.length)];
console.log(message);
}
greet(['Hello World!', 'Habari dunia!', 'Uhoro the!']);
-
data.world
- Lisbon, Portugal
Popular repositories Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.