8000 GitHub - kndungu/kndungu
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

kndungu/kndungu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

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!']);

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0