-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhattocode.js
More file actions
33 lines (31 loc) · 858 Bytes
/
Copy pathwhattocode.js
File metadata and controls
33 lines (31 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
function randCode(){
var text = ["A Calculator",
"The Snake Game",
"A Clone To This Website",
"A Text Editor",
"A Todo List Program",
"A Discord Bot",
"A Programming Language",
"A Chat App",
"A Cryptocurrency",
"A Weather API",
"A Encryption Program",
"A Minecraft Mod",
"A Network Traffic Analyser",
"A Online Text Editor",
"A Personal Website",
"A Linux File Server",
"A Python Web Scraper",
"Rock Paper Scissors Game",
"A Random Password Generator",
"A Music Player",
"Automatize your computer",
"A Memory Game",
"A Social Media Website",
"The Tic Tac Toe Game",
"Face Detector",
"Artificial Intelligence"];
var randtext = Math.floor(Math.random()*26);
document.getElementById("coder").innerHTML = text[randtext];
}
randCode()