mirror of
https://github.com/ianramzy/decentralized-video-chat.git
synced 2024-11-15 06:39:20 +08:00
10 lines
839 B
JavaScript
10 lines
839 B
JavaScript
|
var adjectives = ["small", "big", "large", "smelly", "new", "happy", "shiny", "old", "clean", "nice", "bad", "cool",
|
||
|
"hot", "cold", "warm", "hungry", "slow", "fast", "red", "white", "black", "blue", "green"];
|
||
|
var nouns = ["dog", "bat", "wrench", "apple", "pear", "ghost", "cat", "wolf", "squid", "goat", "snail", "hat",
|
||
|
"sock", "plum", "bear", "snake", "turtle", "horse", "spoon", "fork", "spider", "tree", "chair", "table",
|
||
|
"couch", "towel", "panda", "bread", "grape","cake","brick", "rat", "mouse"];
|
||
|
var adjective = adjectives[Math.floor(Math.random() * adjectives.length)];
|
||
|
var noun = nouns[Math.floor(Math.random() * nouns.length)];
|
||
|
noun = noun.charAt(0).toUpperCase() + noun.substring(1);
|
||
|
adjective = adjective.charAt(0).toUpperCase() + adjective.substring(1);
|
||
|
document.getElementById('input-01').value = adjective + noun;
|