-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathword.js
126 lines (123 loc) · 3.7 KB
/
word.js
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
const words = [
{
word: 'atomic',
type: 'adjective',
meaning: 'relating to an atom or atoms',
synonyms: ['small', 'micro', 'tiny']
},
{
word: 'hijack',
type: 'verb',
meaning: 'unlawfully seize (an aircraft) in transit and force it to go to a different destination for one own purposes.',
synonyms: ['seize', 'commandeer', 'take over']
},
{
word: 'jumble',
type: 'verb',
meaning: 'mix up in a confused or untidy way',
synonyms: ['mix up', 'muddle up', 'disarrange']
},
{
word: 'quench',
type: 'verb',
meaning: `satisfy (one's thirst) by drinking.`,
synonyms: ['put out', 'smother', 'extinguish']
},
{
word: 'sample',
type: 'noun',
meaning: 'a small part or quantity intended to show what the whole is like.',
synonyms: ['specimen', 'representative', 'trial']
},
{
word: 'frenzy',
type: 'noun',
meaning: 'a state or period of uncontrolled excitement or wild behavior.',
synonyms: ['hysteria', 'madness', 'wildness']
},
{
word: 'object',
type: 'noun',
meaning: 'a material thing that can be seen and touched.',
synonyms: ['thing', 'item', 'piece']
},
{
word: 'acquire',
type: 'verb',
meaning: 'to obtain an asset or object for oneself.',
synonyms: ['possess', 'take in', 'capture']
},
{
word: 'chariot',
type: 'noun',
meaning: 'a two-wheeled horse-drawn vehicle used in ancient warfare and racing.',
synonyms: ['carraige', 'wheeled cart', 'horse-drawn vehicle']
},
{
word: 'garnish',
type: 'verb',
meaning: 'a two-wheeled horse-drawn vehicle used in ancient warfare and racing.',
synonyms: ['decoration', 'adornment', 'embellish']
},
{
word: 'country',
type: 'noun',
meaning: 'a nation with its own government, occupying a particular territory.',
synonyms: ['state', 'nation', 'kingdom']
},
{
word: 'picture',
type: 'noun',
meaning: 'represent (someone or something) in a photograph or picture',
synonyms: ['sketch', 'print', 'canvas']
},
{
word: 'mailbox',
type: 'noun',
meaning: 'a private box into which mail is delivered.',
synonyms: ['post box', 'pillar box', 'letter drop']
},
{
word: 'mediator',
type: 'noun',
meaning: 'a person who attempts to make people involved in a conflict come to an agreement.',
synonyms: ['arbiter', 'middleman', 'moderator']
},
{
word: 'sandwich',
type: 'noun',
meaning: 'an item of food consisting of two pieces of bread with meat, cheese, or other filling between them, eaten as a light meal.',
synonyms: ['bread', 'burger', 'tunaburger']
},
{
word: 'computer',
type: 'noun',
meaning: 'an electronic device for storing and processing data, typically in binary form, according to instructions given to it in a variable program.',
synonyms: ['number cruncher', 'computing machine', 'imformation processor']
},
{
word: 'outbreak',
type: 'noun',
meaning: 'the sudden or violent start of something unwelcome, such as war, disease.',
synonyms: ['outburst', 'upsurge', 'eruption']
},
{
word: 'oculars',
type: 'adjective',
meaning: 'of or connected with the eyes or vision.',
synonyms: ['optical', 'visual', 'seeable']
},
{
word: 'repolish',
type: 'verb',
meaning: 'to polish something again',
synonyms: ['reshine', 'glaze', 'luster']
},
{
word: 'donuts',
type: 'noun',
meaning: 'a small fried cake of sweetened dough, typically in the shape of a ball or ring.',
synonyms: ['sweet roll', 'bun', 'dunker']
},
]
const alphabets = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' ]